<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>nRF52-DK &amp;quot;Failed to connect to target&amp;quot; and &amp;quot;Access protection is enabled, can&amp;#39;t read device version&amp;quot;</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/96906/nrf52-dk-failed-to-connect-to-target-and-access-protection-is-enabled-can-t-read-device-version</link><description>Hello Nordic developers, 
 Last week, I got a new nRF52-DK development board from Mouser Electronics UK. I could use this board for a while with SEGGER Embedded Studio for ARM 5.68 and nRF5_SDK_17.1.0_ddde560. I could run &amp;quot;blinky&amp;quot; and other examples from</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 13 Mar 2024 06:29:55 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/96906/nrf52-dk-failed-to-connect-to-target-and-access-protection-is-enabled-can-t-read-device-version" /><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/473548?ContentTypeID=1</link><pubDate>Wed, 13 Mar 2024 06:29:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:895c7c0e-78c8-4857-a14e-6083072fcda1</guid><dc:creator>Shi</dc:creator><description>&lt;p&gt;&lt;span&gt;I&amp;#39;ve recently encountered a similar issue where, after implementing code protection to safeguard my code and the SWD (Serial Wire Debug) interface, I find myself unable to perform any further programming or re-flashing. Here&amp;#39;s the snippet of code I used for the protection setup:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void nrf_bootloader_debug_port_disable(void)
{
    if (NRF_UICR-&amp;gt;APPROTECT != 0x0) {
        NRF_NVMC-&amp;gt;CONFIG = NVMC_CONFIG_WEN_Wen;
        while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy) {}
        NRF_UICR-&amp;gt;APPROTECT = 0x0;
        while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy) {}
        NRF_NVMC-&amp;gt;CONFIG = NVMC_CONFIG_WEN_Ren;
        while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy) {}
        LOG_INF(&amp;quot;NRF_UICR-&amp;gt;APPROTECT Updated! Rebooting system...&amp;quot;);
        k_msleep(1000);
        NVIC_SystemReset();
    }
#if (!defined (NRF52810_XXAA) &amp;amp;&amp;amp; !defined (NRF52811_XXAA) &amp;amp;&amp;amp; !defined (NRF52832_XXAA) &amp;amp;&amp;amp; !defined (NRF52832_XXAB))
    if (NRF_UICR-&amp;gt;DEBUGCTRL != 0x0) {
        NRF_NVMC-&amp;gt;CONFIG = NVMC_CONFIG_WEN_Wen;
        while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy) {}
        NRF_UICR-&amp;gt;DEBUGCTRL = 0x0;
        while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy) {}
        NRF_NVMC-&amp;gt;CONFIG = NVMC_CONFIG_WEN_Ren;
        while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy) {}
        LOG_INF(&amp;quot;NRF_UICR-&amp;gt;DEBUGCTRL Updated! Rebooting system...&amp;quot;);
        k_msleep(1000);
        NVIC_SystemReset();
    }
#endif
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/473038?ContentTypeID=1</link><pubDate>Sat, 09 Mar 2024 01:57:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:52629533-56b9-4e70-996d-1660e780d548</guid><dc:creator>r0n9</dc:creator><description>&lt;p&gt;I got the same `Address protection is enabled` message when using nrf52840 PCA10056. The ` nrfjprog --recover` Using the nRF Connect SDK inVSCode on Windows10, and running the command in the VSCode PowerShell terminal fixed the issue. Thanks for your help :)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/457056?ContentTypeID=1</link><pubDate>Thu, 23 Nov 2023 03:34:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1f74b452-9f9f-43e4-8b58-129566729c8f</guid><dc:creator>duya</dc:creator><description>&lt;p&gt;I have encountered the same problem many times on different customized versions of nrf52832. Most of the time it can be solved by reversing the chip&amp;#39;s vcc and gnd for a short while.&lt;br /&gt;Just be careful to disconnect it quickly after reverse connection, otherwise the chip will be burned.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/445244?ContentTypeID=1</link><pubDate>Sat, 09 Sep 2023 20:26:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:980b3c4c-8977-4532-8648-6dd4e1fc7372</guid><dc:creator>Jesus Cano</dc:creator><description>&lt;p&gt;I do not have access to the board anymore so I cannot try your suggestions. Thank you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/445020?ContentTypeID=1</link><pubDate>Thu, 07 Sep 2023 20:34:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c051306c-a60c-4443-9cc1-05d3eb5a6911</guid><dc:creator>Johnny Nguyen</dc:creator><description>&lt;p&gt;Did you try running the following?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;nrfjprog --recover&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Are you in the same environment as this post? (nRF5 SDK)?&lt;/p&gt;
&lt;p&gt;Have you tried opening RTT viewer or connecting to debugger? This usually prompts a flash erase and clears the protection.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If on NCS, there can be a few other procedures to clear this protection.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/435066?ContentTypeID=1</link><pubDate>Thu, 06 Jul 2023 16:19:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a3db5651-382a-4c8a-819b-f1751aca7e64</guid><dc:creator>Andres Molina</dc:creator><description>&lt;p&gt;Hello Jes&amp;uacute;s, the error that we both had is really unpredictable, last month I consulted again and they told me that they really did not know what could be causing the problem.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In the end Nordic ended up sending us a board in its 2023 version, however the company decided not to use that microcontroller anymore since two of our 2022 boards presented the same failure. I recommend that you look for another alternative, greetings.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/434078?ContentTypeID=1</link><pubDate>Sun, 02 Jul 2023 22:06:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:82a4e637-f0a5-49d3-b668-b079c436efde</guid><dc:creator>Jesus Cano</dc:creator><description>&lt;p&gt;Hi, unfortunately I was not able to resolve it.&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/joakim_2d00_jakobsen"&gt;Joakim Jakobsen&lt;/a&gt;&amp;nbsp;said that he will forward this thread to nordic developers but I have not heard back anything yet. Without a solution I fear that if I buy a new board this can happen again in the middle of a demo to a customer!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/429657?ContentTypeID=1</link><pubDate>Tue, 06 Jun 2023 22:40:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fe1259ca-199c-4438-becc-d67209aa304e</guid><dc:creator>sjmerel</dc:creator><description>&lt;p&gt;Were you able to resolve this?&amp;nbsp; I am having the same problem.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411740?ContentTypeID=1</link><pubDate>Thu, 23 Feb 2023 16:12:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e29e5c45-8aa9-4955-a9a5-6d63ba7d76b5</guid><dc:creator>Jesus Cano</dc:creator><description>&lt;p&gt;Can you try this?:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;nrfutil device recover --log-level trace --log-output=stdout --serial-number 1050301640&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;You should see the log printed in the terminal.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411736?ContentTypeID=1</link><pubDate>Thu, 23 Feb 2023 16:10:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dff5d97f-7f78-4985-87e2-7907133ca612</guid><dc:creator>Andres Molina</dc:creator><description>&lt;p&gt;Hello Jesus&lt;br /&gt;&lt;br /&gt;I have one question for you. How can i show this log registers in my board? What is the correct command?&lt;br /&gt;&lt;br /&gt;I try to use:&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;-- nrfutil device --log-output=file&amp;nbsp;&lt;/p&gt;
&lt;p&gt;-- nrfutil device --log-level trace --log-output=file recover --serial-number 1050301640&amp;nbsp; &lt;br /&gt;&lt;br /&gt;in the termninal but it doesn&amp;#39;t work,&amp;nbsp;it doesn&amp;#39;t show me anything.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411594?ContentTypeID=1</link><pubDate>Thu, 23 Feb 2023 09:59:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7f6e2e42-ffcf-410c-92ef-6f6ea07b82b8</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll forward the logs to our developers and get back to you with any information from them.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Br, &lt;br /&gt;Joakim&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411585?ContentTypeID=1</link><pubDate>Thu, 23 Feb 2023 09:40:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:758ee8d3-53d2-403d-b959-e45bd0188e5f</guid><dc:creator>Jesus Cano</dc:creator><description>&lt;p&gt;HI Joakim,&lt;/p&gt;
&lt;p&gt;Thank you for&amp;nbsp;you suggestion.&lt;/p&gt;
&lt;p&gt;I installed the latest version of nrfUtil and executed the recover command as follows:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;gt; ./nrfutil device recover --log-level trace --serial-number 1050385806
❌ Failed to recover 1050385806, [jlink] RECOVER_FAILED
Error: One or more recover tasks failed
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The generated logs are these:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;[2023-02-23T09:29:41.529Z] [nrfutil-device] INFO - nrfutil-device (version = 1.0.1, platform = x86_64-unknown-linux-gnu) invoked with recover --log-level trace --serial-number 1050385806 
[2023-02-23T09:29:41.529Z] [nrfutil-device] DEBUG - cargo = false, force_libnrfdl_lookup = false, force_nrfutil_libdir = false
[2023-02-23T09:29:41.529Z] [nrfutil-device] DEBUG - Creating the nrfdl context via nrfdl_create_context_with_config: Plugin location is assumed to be /home/suso/.nrfutil/lib/nrfutil-device
[2023-02-23T09:29:41.557Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.557Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] dll_version
[2023-02-23T09:29:41.559Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] Logger sink registered in Segger backend logger
[2023-02-23T09:29:41.559Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [JLink] [Debug] Logger sink registered in JLink logger
[2023-02-23T09:29:41.559Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [nRFXX] [Debug] open
[2023-02-23T09:29:41.559Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [nRFXX] [Debug] just_check_family
[2023-02-23T09:29:41.559Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] open_dll
[2023-02-23T09:29:41.559Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] No J-Link DLL path was provided. Attempting to auto detect.
[2023-02-23T09:29:41.559Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Info] Load library at /opt/SEGGER/JLink/libjlinkarm.so.
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Info] Library loaded, loading member functions.
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Info] Member functions succesfully loaded.
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] dll_version
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Info] Segger dll version 7.86.a loaded.
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [nRFXX] [Debug] dll_version
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] is_connected_to_emu
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] dll_version
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] is_connected_to_emu
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [nRFXX] [Debug] close
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] is_connected_to_emu
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] close
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] disconnect_from_emu
[2023-02-23T09:29:41.562Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] is_connected_to_emu
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [SeggerBackend] [Debug] Segger Backend closed.
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG] [nRFXX] [Debug] nRF family DLL closed
[2023-02-23T09:29:41.563Z] [nrfutil-device] WARN - [JlinkARM] JlinkARM version non expected one found: JLink_V7.86a, expected: JLink_V7.66a
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Checking future_status of enumerate_task_status
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Waiting for enumerate task to complete
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - DeviceLister::enumerate::enumerate_task: Start
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - DeviceLister::enumerate::enumerate_task: Before async_lister-&amp;gt;enumerate
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 0
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #0
[2023-02-23T09:29:41.563Z] [nrfutil-device] TRACE - Unable to open USB device. Error code: -3. idProduct=3, idVendor=7531
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 1 devices are added
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 1
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #1
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - Unable to open USB device. Error code: -3. idProduct=2, idVendor=7531
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 1 devices are added
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 2
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #2
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - Unable to open USB device. Error code: -3. idProduct=790, idVendor=3034
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 2 devices are added
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 3
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #3
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - Unable to open USB device. Error code: -3. idProduct=3, idVendor=7531
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 2 devices are added
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 4
[2023-02-23T09:29:41.564Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #4
[2023-02-23T09:29:41.677Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.677Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.677Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 3 devices are added
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 5
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #5
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - Unable to open USB device. Error code: -3. idProduct=8467, idVendor=22918
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 4 devices are added
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 6
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #6
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - Unable to open USB device. Error code: -3. idProduct=2603, idVendor=32903
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 5 devices are added
[2023-02-23T09:29:41.678Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 7
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #7
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 6 devices are added
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 8
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #8
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - Unable to open USB device. Error code: -3. idProduct=321, idVendor=1241
[2023-02-23T09:29:41.679Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 7 devices are added
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Starting iteration 9
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Doing copyDeviceToUsb of device #9
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - Unable to open USB device. Error code: -3. idProduct=2, idVendor=7531
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for manufacturer
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for product
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::copyDeviceToUSB: Getting string descriptor for serialnumber
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found new device, adding it
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: New device added, in total 7 devices are added
[2023-02-23T09:29:41.680Z] [nrfutil-device] TRACE - USBPlatformAPI::enumerate: Found 7 devices
[2023-02-23T09:29:41.680Z] [nrfutil-device] DEBUG - USBLister: Adding device with serial number: 
[2023-02-23T09:29:41.680Z] [nrfutil-device] DEBUG - USBLister: Adding device with serial number: 
[2023-02-23T09:29:41.680Z] [nrfutil-device] DEBUG - USBLister: Adding device with serial number: d843b486461f
[2023-02-23T09:29:41.680Z] [nrfutil-device] DEBUG - USBLister: Adding device with serial number: 001050385806
[2023-02-23T09:29:41.681Z] [nrfutil-device] DEBUG - USBLister: Adding device with serial number: 
[2023-02-23T09:29:41.681Z] [nrfutil-device] DEBUG - USBLister: Adding device with serial number: 
[2023-02-23T09:29:41.681Z] [nrfutil-device] DEBUG - USBLister: Adding device with serial number: 
[2023-02-23T09:29:41.681Z] [nrfutil-device] TRACE - DeviceLister::enumerate::enumerate_task: After async_lister-&amp;gt;enumerate
[2023-02-23T09:29:41.682Z] [nrfutil-device] TRACE - [jlink] JLinkPlugin::enumerate
[2023-02-23T09:29:41.683Z] [nrfutil-device] DEBUG - [jlink] [-&amp;gt;] enumerate
[2023-02-23T09:29:41.683Z] [nrfutil-device] DEBUG - [jlink] JLinkHW::enumerate all devices
[2023-02-23T09:29:41.683Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.683Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] get_connected_probes
[2023-02-23T09:29:41.685Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.685Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] probe_init
[2023-02-23T09:29:41.685Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.685Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] User set clock_speed == 0, setting default clock speed to default value 2000.
[2023-02-23T09:29:41.685Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.685Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] initialize
[2023-02-23T09:29:41.701Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.701Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] open
[2023-02-23T09:29:41.701Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.701Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] start
[2023-02-23T09:29:41.713Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.713Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command open executed for 5 milliseconds with result 0
[2023-02-23T09:29:41.713Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.713Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] connect_to_emu_with_snr
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Logger sink registered in Segger backend logger
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][JLink][] Logger sink registered in JLink logger
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] open
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] just_check_family
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] open_dll
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] No J-Link DLL path was provided. Attempting to auto detect.
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] dll_version
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command open executed for 3 milliseconds with result 0
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] connect_to_emu_with_snr
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:41.720Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.721Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] connect_to_emu_with_snr
[2023-02-23T09:29:41.721Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.721Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:41.721Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.721Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_enum_emu_snr
[2023-02-23T09:29:41.721Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:41.721Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_get_num_emus
[2023-02-23T09:29:42.093Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.093Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_connect_to_emu_with_snr
[2023-02-23T09:29:42.254Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.254Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_connect_to_emu_without_snr
[2023-02-23T09:29:42.254Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.254Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Segger logging enabled.
[2023-02-23T09:29:42.265Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.265Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov  7 2022 16:22:01
[2023-02-23T09:29:42.265Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.265Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov  7 2022 16:22:01
[2023-02-23T09:29:42.281Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.281Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command connect_to_emu_with_snr executed for 567 milliseconds with result 0
[2023-02-23T09:29:42.281Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.281Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] read_device_family
[2023-02-23T09:29:42.282Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.282Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command read_device_family executed for 0 milliseconds with result 0
[2023-02-23T09:29:42.282Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.282Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] select_family
[2023-02-23T09:29:42.285Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.285Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Hardware: V1.00
[2023-02-23T09:29:42.285Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.285Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] S/N: 1050385806
[2023-02-23T09:29:42.285Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.285Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] OEM: SEGGER
[2023-02-23T09:29:42.285Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.285Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB
[2023-02-23T09:29:42.285Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.285Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] USB speed mode: Full speed (12 MBit/s)
[2023-02-23T09:29:42.285Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] TELNET listener socket opened on port 19021
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] WEBSRV WEBSRV_Init(): Starting webserver thread(s)
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] WEBSRV Webserver running on local port 19080
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 18.136ms returns &amp;quot;O.K.&amp;quot;  
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;SetRestartOnClose = 0&amp;quot;, ...).   
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.010ms returns 0x01  
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.286Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.286Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;DisableFlashDL&amp;quot;, ...).   
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.007ms returns 0x00  
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;ExcludeFlashCacheRange 0x0-0xFFFFFFFF&amp;quot;, ...).   
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.006ms returns 0x00  
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetHookUnsecureDialog  
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetHookUnsecureDialog(...)
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.027ms returns 0  
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.287Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_TIF_Select(JLINKARM_TIF_SWD)  
[2023-02-23T09:29:42.287Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.714ms returns 0x00  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSpeedInfo()  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] 128000000 Hz / n, n &amp;gt;= 64
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.027ms  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Connected emulator supports SWD speeds up to 2000kHz
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetSpeed(2000)  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.154ms  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSpeed()  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.288Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.014ms returns 2000  
[2023-02-23T09:29:42.288Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] SWD clock set to 2000kHz
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSN()  
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.014ms returns 1050385806  
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_idr
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_register
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] coresight_configure
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetHWStatus(...)  
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.204ms returns 0  
[2023-02-23T09:29:42.289Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.289Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_Configure()  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.430ms returns 0  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.297ms returns 0  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00)  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x2BA01477
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.346ms returns 0  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.290Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.033ms  
[2023-02-23T09:29:42.290Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command connect_to_emu_with_snr executed for 567 milliseconds with result 0
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] read_device_family
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.036ms returns 0x01  
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_idr
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_register
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.331ms returns 0  
[2023-02-23T09:29:42.291Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.291Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00)  
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x2BA01477
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.248ms returns 0  
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.023ms  
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command read_device_family executed for 0 milliseconds with result 0
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] set_core_data
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Set core data:
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Device ID: nRF52
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Expected core: 234881279
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Existing Expected core: 4294967295
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.292Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Coprocessor: APPLICATION
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   AHB AP index: 0
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Core base address: 4294967295
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---set_coresight_ahb_ap_index
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;CORESIGHT_SetIndexAHBAPToUse = 0&amp;quot;, ...).   
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.008ms returns 0x00  
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;device = nRF52&amp;quot;, ...).   
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Device &amp;quot;NRF52&amp;quot; selected.
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Device &amp;quot;NRF52&amp;quot; selected.
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command select_family executed for 5 milliseconds with result 0
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] readDeviceInfo
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] read_device_info
[2023-02-23T09:29:42.293Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command read_device_info executed for 4 milliseconds with result -90
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][DebugProbe][] Failed reading device info.
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: Could not read device info because the device is locked.
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: No actions other than recover will be available.
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: Try recovering the device if you want to unlock it.
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] get_device_info
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Device info is blank. Attempting to reread.
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] readDeviceInfo
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.294Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] read_device_info
[2023-02-23T09:29:42.295Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.295Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 4.832ms returns 0x00  
[2023-02-23T09:29:42.295Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command select_family executed for 5 milliseconds with result 0
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] read_device_info
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.022ms returns 0x01  
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_read_device_version
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.296Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.311ms returns 0  
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command read_device_info executed for 4 milliseconds with result -90
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][DebugProbe][] Failed reading device info.
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: Could not read device info because the device is locked.
[2023-02-23T09:29:42.297Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.297Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: No actions other than recover will be available.
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: Try recovering the device if you want to unlock it.
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][HighLevel][] Failed to read device info from the device.
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] Got partial JLink device info because device has app protect enabled.
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.265ms returns 0  
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] get_probe_info
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] getProbeInfo
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.257ms returns 0  
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] enum_emu_com
[2023-02-23T09:29:42.298Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.298Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.271ms returns 0  
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.307ms returns 0  
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.299Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.268ms returns 0  
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.300Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.330ms returns 0  
[2023-02-23T09:29:42.300Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.280ms returns 0  
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.348ms returns 0  
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.301Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.377ms returns 0  
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.302Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.302Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.303Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.294ms returns 0  
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.303Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.303Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.303Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.303Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.263ms returns 0  
[2023-02-23T09:29:42.303Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][nRF52][] Access protection is enabled, can&amp;#39;t read device version.
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.019ms  
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command read_device_info executed for 3 milliseconds with result -90
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] read_device_info
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.015ms returns 0x01  
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.304Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:42.304Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_read_device_version
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:42.305Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.305Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.196ms returns 0  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.278ms returns 0  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.265ms returns 0  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.306Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.306Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.325ms returns 0  
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.350ms returns 0  
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.307Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.307Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.345ms returns 0  
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.303ms returns 0  
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.308Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.324ms returns 0  
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.377ms returns 0  
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.309Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.309Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.338ms returns 0  
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.345ms returns 0  
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.310Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.345ms returns 0  
[2023-02-23T09:29:42.310Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][nRF52][] Access protection is enabled, can&amp;#39;t read device version.
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.024ms  
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command read_device_info executed for 4 milliseconds with result -90
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] enum_emu_com
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.029ms returns 0x01  
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] enum_emu_com
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][SeggerBackend][] Create serialport listener
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][SeggerBackend][] Enumerate ports
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.311Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Linux serialport enumerate.
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.322Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command enum_emu_com, executed for 25 milliseconds with result 0
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] read_connected_emu_fwstr
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.322Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command read_connected_emu_fwstr executed for 0 milliseconds with result 0
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] get_readback_protection
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] getReadbackProtectionStatus
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.322Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] readback_status
[2023-02-23T09:29:42.325Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.325Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command readback_status executed for 3 milliseconds with result 0
[2023-02-23T09:29:42.325Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.325Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] probe_uninit
[2023-02-23T09:29:42.325Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.325Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] internal_probe_uninit
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Evaluating com port.
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Com port is a Segger device.
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Com port serial number matches target serial number.
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Found COM port:
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	Path   = /dev/ttyACM0
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	PNP ID = 
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	VCOM   = 
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	Snr    = 001050385806
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	USB ID = 26
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	VCOM_D = 0
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Evaluating com port.
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Com port is a Segger device.
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Com port serial number matches target serial number.
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Found COM port:
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	Path   = /dev/ttyACM1
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	PNP ID = 
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	VCOM   = 
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	Snr    = 001050385806
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	USB ID = 26
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] 	VCOM_D = 1
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 25.365ms  
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command enum_emu_com, executed for 25 milliseconds with result 0
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] read_connected_emu_fwstr
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:42.328Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.328Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.009ms returns 0x01  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_connected_emu_fwstr
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_connected_emu_fwstr
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetFirmwareString(...)  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.006ms  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command read_connected_emu_fwstr executed for 0 milliseconds with result 0
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] readback_status
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.007ms returns 0x01  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.291ms returns 0  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.183ms returns 0  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.331ms returns 0  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.319ms returns 0  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.260ms returns 0  
[2023-02-23T09:29:42.329Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.329Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.275ms returns 0  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.209ms returns 0  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.292ms returns 0  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.256ms returns 0  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.252ms returns 0  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.192ms returns 0  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.184ms returns 0  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms  
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command readback_status executed for 3 milliseconds with result 0
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] close
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.330Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms returns 0x01  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] close
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] disconnect_from_emu
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_disconnect_from_emu
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_device
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.156ms returns 0  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.175ms returns 0  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] unpower_debug_and_system_regions
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_debug_port_register
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000)  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.154ms returns 0  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000040
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.222ms returns 0  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:42.331Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.331Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.006ms  
[2023-02-23T09:29:42.338Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.338Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Close()  
[2023-02-23T09:29:42.349Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.349Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Segger Backend closed.
[2023-02-23T09:29:42.349Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.349Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] nRF family DLL closed
[2023-02-23T09:29:42.353Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.353Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command close executed for 27 milliseconds with result 0
[2023-02-23T09:29:42.353Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.353Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] terminate
[2023-02-23T09:29:42.353Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.353Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command terminate executed for 0 milliseconds with result 0
[2023-02-23T09:29:42.359Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.359Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command close executed for 27 milliseconds with result 0
[2023-02-23T09:29:42.359Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.359Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command terminate executed for 0 milliseconds with result 0
[2023-02-23T09:29:42.359Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.359Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Executed 11 commands for 637 milliseconds
[2023-02-23T09:29:42.371Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.371Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Worker process exited with code: 0
[2023-02-23T09:29:42.371Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.371Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Worker process exited with code: 0
[2023-02-23T09:29:42.371Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.372Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Tried to wait on already ended process: wait error: No child processes
[2023-02-23T09:29:42.372Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.372Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Child process terminated with result 0
[2023-02-23T09:29:42.466Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.466Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Executed 11 commands for 640 milliseconds
[2023-02-23T09:29:42.467Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.467Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] terminate
[2023-02-23T09:29:42.474Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.474Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] uninitialize
[2023-02-23T09:29:42.474Z] [nrfutil-device] DEBUG - [jlink] [&amp;lt;-] enumerate [took 790ms]
[2023-02-23T09:29:42.476Z] [nrfutil-device] DEBUG - [SerialPortListerHW::LINUX] Linux serialport enumerate.
[2023-02-23T09:29:42.478Z] [nrfutil-device] DEBUG - [SerialPortListerHW::LINUX] set container ID: 1
[2023-02-23T09:29:42.478Z] [nrfutil-device] DEBUG - [SerialPortListerHW::LINUX] set container ID: 1
[2023-02-23T09:29:42.485Z] [nrfutil-device] DEBUG - [SerialPortListerHW::LINUX] try to map FTDI to segger device
[2023-02-23T09:29:42.485Z] [nrfutil-device] DEBUG - [serialport] serialport enumerate update device: 001050385806
[2023-02-23T09:29:42.489Z] [nrfutil-device] TRACE - [broken] BrokenPlugin::enumerate
[2023-02-23T09:29:42.490Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Found device with serial number: 
[2023-02-23T09:29:42.490Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Found device with serial number: 
[2023-02-23T09:29:42.490Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Found device with serial number: 
[2023-02-23T09:29:42.490Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Found device with serial number: 001050385806
[2023-02-23T09:29:42.490Z] [nrfutil-device] TRACE - DeviceLister::enumerate: device registered to device list
[2023-02-23T09:29:42.490Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Found device with serial number: d843b486461f
[2023-02-23T09:29:42.490Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Found device with serial number: 
[2023-02-23T09:29:42.490Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Found device with serial number: 
[2023-02-23T09:29:42.493Z] [nrfutil-device] TRACE - DeviceLister::enumerate: Completed waiting for enumerate task
[2023-02-23T09:29:42.493Z] [nrfutil-device] TRACE - DeviceLister::enumerate: done
[2023-02-23T09:29:42.495Z] [nrfutil-device] INFO - Loaded plugin /home/suso/.nrfutil/lib/nrfutil-device/nrfdl-jlink-plugin.nrfdl, starting to resolve symbols
[2023-02-23T09:29:42.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.495Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] probe_init
[2023-02-23T09:29:42.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.495Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] User set clock_speed == 0, setting default clock speed to default value 2000.
[2023-02-23T09:29:42.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.495Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] initialize
[2023-02-23T09:29:42.495Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.496Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.496Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.496Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.501Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.501Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] open
[2023-02-23T09:29:42.501Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.501Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] start
[2023-02-23T09:29:42.505Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Logger sink registered in Segger backend logger
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][JLink][] Logger sink registered in JLink logger
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] open
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] just_check_family
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] open_dll
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.505Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] No J-Link DLL path was provided. Attempting to auto detect.
[2023-02-23T09:29:42.507Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.507Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command open executed for 3 milliseconds with result 0
[2023-02-23T09:29:42.507Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.507Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] connect_to_emu_with_snr
[2023-02-23T09:29:42.515Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.515Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.515Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] dll_version
[2023-02-23T09:29:42.515Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.515Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command open executed for 2 milliseconds with result 0
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] connect_to_emu_with_snr
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] connect_to_emu_with_snr
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_enum_emu_snr
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.515Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_get_num_emus
[2023-02-23T09:29:42.858Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:42.858Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_connect_to_emu_with_snr
[2023-02-23T09:29:43.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_connect_to_emu_without_snr
[2023-02-23T09:29:43.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Segger logging enabled.
[2023-02-23T09:29:43.039Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.039Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov  7 2022 16:22:01
[2023-02-23T09:29:43.039Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.039Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov  7 2022 16:22:01
[2023-02-23T09:29:43.056Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.056Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command connect_to_emu_with_snr executed for 549 milliseconds with result 0
[2023-02-23T09:29:43.056Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.056Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] read_device_family
[2023-02-23T09:29:43.057Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.057Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command read_device_family executed for 0 milliseconds with result 0
[2023-02-23T09:29:43.057Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.057Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] select_family
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command select_family executed for 2 milliseconds with result 0
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] readDeviceInfo
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Hardware: V1.00
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] S/N: 1050385806
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] OEM: SEGGER
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] USB speed mode: Full speed (12 MBit/s)
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] TELNET listener socket opened on port 19021
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] WEBSRV WEBSRV_Init(): Starting webserver thread(s)
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] WEBSRV Webserver running on local port 19080
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 16.250ms returns &amp;quot;O.K.&amp;quot;  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;SetRestartOnClose = 0&amp;quot;, ...).   
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms returns 0x01  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;DisableFlashDL&amp;quot;, ...).   
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.002ms returns 0x00  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;ExcludeFlashCacheRange 0x0-0xFFFFFFFF&amp;quot;, ...).   
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.003ms returns 0x00  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetHookUnsecureDialog  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetHookUnsecureDialog(...)
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.006ms returns 0  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] read_device_info
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_TIF_Select(JLINKARM_TIF_SWD)  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.513ms returns 0x00  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSpeedInfo()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] 128000000 Hz / n, n &amp;gt;= 64
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.007ms  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Connected emulator supports SWD speeds up to 2000kHz
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetSpeed(2000)  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.072ms  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSpeed()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.003ms returns 2000  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] SWD clock set to 2000kHz
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSN()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.003ms returns 1050385806  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_idr
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_register
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:43.060Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] coresight_configure
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetHWStatus(...)  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 1.173ms returns 0  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_Configure()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.725ms returns 0  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.281ms returns 0  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00)  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x2BA01477
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.235ms returns 0  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.010ms  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command connect_to_emu_with_snr executed for 549 milliseconds with result 0
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] read_device_family
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.010ms returns 0x01  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_idr
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_register
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.205ms returns 0  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00)  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x2BA01477
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.156ms returns 0  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.011ms  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command read_device_family executed for 0 milliseconds with result 0
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] set_core_data
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Set core data:
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Device ID: nRF52
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Expected core: 234881279
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Existing Expected core: 4294967295
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Coprocessor: APPLICATION
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   AHB AP index: 0
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Core base address: 4294967295
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---set_coresight_ahb_ap_index
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;CORESIGHT_SetIndexAHBAPToUse = 0&amp;quot;, ...).   
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.003ms returns 0x00  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;device = nRF52&amp;quot;, ...).   
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Device &amp;quot;NRF52&amp;quot; selected.
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Device &amp;quot;NRF52&amp;quot; selected.
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 2.493ms returns 0x00  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.061Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.061Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command select_family executed for 2 milliseconds with result 0
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.063Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command read_device_info executed for 2 milliseconds with result -90
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.063Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][DebugProbe][] Failed reading device info.
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.063Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: Could not read device info because the device is locked.
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.063Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: No actions other than recover will be available.
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.063Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: Try recovering the device if you want to unlock it.
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] recover
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] recover
[2023-02-23T09:29:43.063Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:43.063Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.063Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] recover
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] read_device_info
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms returns 0x01  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_read_device_version
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.197ms returns 0  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.201ms returns 0  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.174ms returns 0  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.070Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:43.070Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.227ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.216ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.210ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.266ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.187ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.254ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.221ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.207ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.242ms returns 0  
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.071Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:43.071Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][nRF52][] Access protection is enabled, can&amp;#39;t read device version.
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.004ms  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command read_device_info executed for 2 milliseconds with result -90
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] recover
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.003ms returns 0x01  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_recover
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.217ms returns 0  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.179ms returns 0  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.177ms returns 0  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.168ms returns 0  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.173ms returns 0  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.173ms returns 0  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.206ms returns 0  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:29:43.072Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.073Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.073Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.300ms returns 0  
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.073Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.073Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.073Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.249ms returns 0  
[2023-02-23T09:29:43.073Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.073Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:43.569Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.315ms returns 0  
[2023-02-23T09:29:43.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:43.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:44.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.075Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:44.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.075Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:44.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.075Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:44.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:44.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:44.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.445ms returns 0  
[2023-02-23T09:29:44.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.272ms returns 0  
[2023-02-23T09:29:44.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:44.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.075Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.075Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.075Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.299ms returns 0  
[2023-02-23T09:29:45.075Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.075Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.330ms returns 0  
[2023-02-23T09:29:45.570Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:45.570Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.201ms returns 0  
[2023-02-23T09:29:46.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.251ms returns 0  
[2023-02-23T09:29:46.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:46.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.324ms returns 0  
[2023-02-23T09:29:47.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.340ms returns 0  
[2023-02-23T09:29:47.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:47.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:48.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:48.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:48.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:48.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:48.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:48.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.213ms returns 0  
[2023-02-23T09:29:48.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.252ms returns 0  
[2023-02-23T09:29:48.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:48.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.360ms returns 0  
[2023-02-23T09:29:49.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.289ms returns 0  
[2023-02-23T09:29:49.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:49.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.267ms returns 0  
[2023-02-23T09:29:50.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.076Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.571Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.334ms returns 0  
[2023-02-23T09:29:50.571Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:50.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:51.076Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.268ms returns 0  
[2023-02-23T09:29:51.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.077Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:51.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:51.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:51.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.572Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:51.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:51.572Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.572Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:51.573Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.573Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.304ms returns 0  
[2023-02-23T09:29:51.573Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:51.573Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.093Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.093Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.093Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.281ms returns 0  
[2023-02-23T09:29:52.093Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.093Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.577Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.577Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.577Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.331ms returns 0  
[2023-02-23T09:29:52.577Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:52.577Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.331ms returns 0  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_debug_reset
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.286ms returns 0  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.315ms returns 0  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.082Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.082Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.246ms returns 0  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.234ms returns 0  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.259ms returns 0  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.170ms returns 0  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.210ms returns 0  
[2023-02-23T09:29:53.083Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.083Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.256ms returns 0  
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.200ms returns 0  
[2023-02-23T09:29:53.092Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.092Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.102Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:29:53.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.102Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:29:53.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.102Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.227ms returns 0  
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.234ms returns 0  
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.256ms returns 0  
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.178ms returns 0  
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.177ms returns 0  
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:29:53.105Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.105Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.146ms returns 0  
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.174ms returns 0  
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.287ms returns 0  
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.106Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.223ms returns 0  
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.219ms returns 0  
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.173ms returns 0  
[2023-02-23T09:29:53.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.108Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.607Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.607Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.607Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.270ms returns 0  
[2023-02-23T09:29:53.607Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:53.607Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.101Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.101Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.101Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.271ms returns 0  
[2023-02-23T09:29:54.101Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.101Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.606Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.606Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.606Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.276ms returns 0  
[2023-02-23T09:29:54.606Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:54.606Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.102Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.102Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.102Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.232ms returns 0  
[2023-02-23T09:29:55.102Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.102Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.608Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.608Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.608Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.239ms returns 0  
[2023-02-23T09:29:55.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:55.608Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.354ms returns 0  
[2023-02-23T09:29:56.104Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.104Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:56.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.608Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:56.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.608Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:56.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.608Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:56.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.608Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:56.608Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.609Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:56.609Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.609Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.281ms returns 0  
[2023-02-23T09:29:56.609Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:56.609Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.308ms returns 0  
[2023-02-23T09:29:57.103Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.103Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.612Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.612Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.612Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.207ms returns 0  
[2023-02-23T09:29:57.612Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:57.612Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.107Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.394ms returns 0  
[2023-02-23T09:29:58.107Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.108Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.613Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.613Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.613Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.265ms returns 0  
[2023-02-23T09:29:58.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:58.613Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.108Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.108Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.108Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.464ms returns 0  
[2023-02-23T09:29:59.108Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.613Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.613Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.613Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.225ms returns 0  
[2023-02-23T09:29:59.613Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:29:59.613Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:00.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:00.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:00.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:00.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:00.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.110Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:00.110Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.110Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.392ms returns 0  
[2023-02-23T09:30:00.110Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.110Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.221ms returns 0  
[2023-02-23T09:30:00.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:00.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.308ms returns 0  
[2023-02-23T09:30:01.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.275ms returns 0  
[2023-02-23T09:30:01.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:01.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.315ms returns 0  
[2023-02-23T09:30:02.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.110Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.239ms returns 0  
[2023-02-23T09:30:02.614Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:02.614Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.108Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.358ms returns 0  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_debug_reset
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.293ms returns 0  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.339ms returns 0  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.334ms returns 0  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.272ms returns 0  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.109Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.109Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.261ms returns 0  
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.191ms returns 0  
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.157ms returns 0  
[2023-02-23T09:30:03.119Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.119Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.300ms returns 0  
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.293ms returns 0  
[2023-02-23T09:30:03.129Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.129Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.139Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.139Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:30:03.139Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.139Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.371ms returns 0  
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.293ms returns 0  
[2023-02-23T09:30:03.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.296ms returns 0  
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.254ms returns 0  
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.276ms returns 0  
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.343ms returns 0  
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.252ms returns 0  
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.143Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.334ms returns 0  
[2023-02-23T09:30:03.143Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.302ms returns 0  
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:03.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.248ms returns 0  
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.145Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.145Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.145Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.145Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.222ms returns 0  
[2023-02-23T09:30:03.145Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.145Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:03.634Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.634Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:03.634Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.634Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:03.634Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.634Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:03.634Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.634Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:03.644Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.644Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:03.644Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.644Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.277ms returns 0  
[2023-02-23T09:30:03.644Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:03.644Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.437ms returns 0  
[2023-02-23T09:30:04.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.140Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.635Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.635Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.635Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.234ms returns 0  
[2023-02-23T09:30:04.635Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:04.635Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:05.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:05.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.140Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:05.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:05.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:05.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:05.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.399ms returns 0  
[2023-02-23T09:30:05.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.645Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.645Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:05.645Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.646Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.397ms returns 0  
[2023-02-23T09:30:05.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:05.646Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:06.140Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.391ms returns 0  
[2023-02-23T09:30:06.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:06.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.646Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:06.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:06.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:06.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:06.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:06.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.496ms returns 0  
[2023-02-23T09:30:06.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:06.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.368ms returns 0  
[2023-02-23T09:30:07.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.141Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.646Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.646Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.646Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.291ms returns 0  
[2023-02-23T09:30:07.646Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:07.646Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:08.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:08.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:08.141Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.141Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:08.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:08.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:08.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.419ms returns 0  
[2023-02-23T09:30:08.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.419ms returns 0  
[2023-02-23T09:30:08.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:08.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 1.399ms returns 0  
[2023-02-23T09:30:09.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.308ms returns 0  
[2023-02-23T09:30:09.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:09.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:10.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:10.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:10.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.142Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:10.142Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.142Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:10.152Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.152Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:10.152Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.152Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.266ms returns 0  
[2023-02-23T09:30:10.152Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.152Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.261ms returns 0  
[2023-02-23T09:30:10.647Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:10.647Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:11.152Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.153Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.153Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.153Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.441ms returns 0  
[2023-02-23T09:30:11.153Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.153Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.648Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.648Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.648Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.257ms returns 0  
[2023-02-23T09:30:11.648Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:11.648Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:12.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:12.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:12.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.144Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:12.144Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.144Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:12.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:12.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.271ms returns 0  
[2023-02-23T09:30:12.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:12.649Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.649Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:12.649Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.649Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:12.649Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.650Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:12.650Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.650Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:12.650Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.650Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:12.650Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.650Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.302ms returns 0  
[2023-02-23T09:30:12.650Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:12.650Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.243ms returns 0  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_debug_reset
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.215ms returns 0  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.255ms returns 0  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.154Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.272ms returns 0  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.278ms returns 0  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.294ms returns 0  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.215ms returns 0  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.148ms returns 0  
[2023-02-23T09:30:13.155Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.155Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.164Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.164Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.269ms returns 0  
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.221ms returns 0  
[2023-02-23T09:30:13.165Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.165Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.174Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.174Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command recover executed for 30111 milliseconds with result -21
[2023-02-23T09:30:13.174Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.174Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][DebugProbe][] Failed while performing recovery.
[2023-02-23T09:30:13.174Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.335ms returns 0  
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.175Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.175Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] probe_uninit
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] internal_probe_uninit
[2023-02-23T09:30:13.176Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.392ms returns 0  
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.176Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.176Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.176Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.307ms returns 0  
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.368ms returns 0  
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.177Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.177Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.319ms returns 0  
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.351ms returns 0  
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.178Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.178Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.371ms returns 0  
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.313ms returns 0  
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.179Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.229ms returns 0  
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.180Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.180Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.342ms returns 0  
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.181Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_read_device_version
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.271ms returns 0  
[2023-02-23T09:30:13.181Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.181Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.322ms returns 0  
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.254ms returns 0  
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.182Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.264ms returns 0  
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.183Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.183Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.359ms returns 0  
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.343ms returns 0  
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.184Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.395ms returns 0  
[2023-02-23T09:30:13.184Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.368ms returns 0  
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.185Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.185Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.359ms returns 0  
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.355ms returns 0  
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.186Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.186Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][nRF52][] Access protection is enabled, can&amp;#39;t read device version.
[2023-02-23T09:30:13.186Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.018ms  
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command recover executed for 30111 milliseconds with result -21
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] close
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.036ms returns 0x01  
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] close
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] disconnect_from_emu
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_disconnect_from_emu
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_device
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.187Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.295ms returns 0  
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.300ms returns 0  
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] unpower_debug_and_system_regions
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_debug_port_register
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:13.188Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.188Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000)  
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.243ms returns 0  
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000040
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.417ms returns 0  
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.022ms  
[2023-02-23T09:30:13.189Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.189Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Close()  
[2023-02-23T09:30:13.206Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.206Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Segger Backend closed.
[2023-02-23T09:30:13.206Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.206Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] nRF family DLL closed
[2023-02-23T09:30:13.209Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.210Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command close executed for 34 milliseconds with result 0
[2023-02-23T09:30:13.210Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.210Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] terminate
[2023-02-23T09:30:13.210Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.210Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command terminate executed for 0 milliseconds with result 0
[2023-02-23T09:30:13.216Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.216Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command close executed for 34 milliseconds with result 0
[2023-02-23T09:30:13.216Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.216Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command terminate executed for 0 milliseconds with result 0
[2023-02-23T09:30:13.216Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.216Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Executed 8 commands for 30700 milliseconds
[2023-02-23T09:30:13.227Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.227Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Worker process exited with code: 0
[2023-02-23T09:30:13.227Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.227Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Worker process exited with code: 0
[2023-02-23T09:30:13.227Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.227Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Tried to wait on already ended process: wait error: No child processes
[2023-02-23T09:30:13.227Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.227Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Child process terminated with result 0
[2023-02-23T09:30:13.320Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.320Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Executed 8 commands for 30701 milliseconds
[2023-02-23T09:30:13.320Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.320Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] terminate
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] uninitialize
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] Unable to recover at retry (this is not necessarily an error): 0, exception message: RECOVER_FAILED
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] probe_init
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] User set clock_speed == 0, setting default clock speed to default value 2000.
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.322Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] initialize
[2023-02-23T09:30:13.322Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.323Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.323Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.323Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.327Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.327Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] open
[2023-02-23T09:30:13.327Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.327Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] start
[2023-02-23T09:30:13.332Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.334Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.334Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command open executed for 2 milliseconds with result 0
[2023-02-23T09:30:13.334Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.334Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] connect_to_emu_with_snr
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Logger sink registered in Segger backend logger
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][JLink][] Logger sink registered in JLink logger
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] open
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] just_check_family
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] open_dll
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] No J-Link DLL path was provided. Attempting to auto detect.
[2023-02-23T09:30:13.342Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.342Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.342Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] dll_version
[2023-02-23T09:30:13.342Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command open executed for 1 milliseconds with result 0
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] connect_to_emu_with_snr
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] connect_to_emu_with_snr
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_enum_emu_snr
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.342Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_get_num_emus
[2023-02-23T09:30:13.694Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.695Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_connect_to_emu_with_snr
[2023-02-23T09:30:13.876Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.876Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_connect_to_emu_without_snr
[2023-02-23T09:30:13.876Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.876Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Segger logging enabled.
[2023-02-23T09:30:13.896Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.896Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov  7 2022 16:22:01
[2023-02-23T09:30:13.896Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.896Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov  7 2022 16:22:01
[2023-02-23T09:30:13.904Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.904Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command connect_to_emu_with_snr executed for 569 milliseconds with result 0
[2023-02-23T09:30:13.904Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.904Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] read_device_family
[2023-02-23T09:30:13.904Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.904Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command read_device_family executed for 0 milliseconds with result 0
[2023-02-23T09:30:13.904Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.904Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] select_family
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command select_family executed for 1 milliseconds with result 0
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] readDeviceInfo
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] read_device_info
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Hardware: V1.00
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] S/N: 1050385806
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] OEM: SEGGER
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] USB speed mode: Full speed (12 MBit/s)
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] TELNET listener socket opened on port 19021
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] WEBSRV WEBSRV_Init(): Starting webserver thread(s)
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] WEBSRV Webserver running on local port 19080
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 16.374ms returns &amp;quot;O.K.&amp;quot;  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;SetRestartOnClose = 0&amp;quot;, ...).   
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.003ms returns 0x01  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;DisableFlashDL&amp;quot;, ...).   
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.002ms returns 0x00  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;ExcludeFlashCacheRange 0x0-0xFFFFFFFF&amp;quot;, ...).   
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.002ms returns 0x00  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetHookUnsecureDialog  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetHookUnsecureDialog(...)
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.009ms returns 0  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_TIF_Select(JLINKARM_TIF_SWD)  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.512ms returns 0x00  
[2023-02-23T09:30:13.906Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.906Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSpeedInfo()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] 128000000 Hz / n, n &amp;gt;= 64
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.009ms  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Connected emulator supports SWD speeds up to 2000kHz
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_SetSpeed(2000)  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.033ms  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSpeed()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms returns 2000  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] SWD clock set to 2000kHz
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetSN()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms returns 1050385806  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_idr
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_register
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] coresight_configure
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_GetHWStatus(...)  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.085ms returns 0  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_Configure()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.316ms returns 0  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.188ms returns 0  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00)  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x2BA01477
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.181ms returns 0  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command connect_to_emu_with_snr executed for 569 milliseconds with result 0
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRFXX][] read_device_family
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms returns 0x01  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_idr
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_debug_port_register
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.181ms returns 0  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00)  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x2BA01477
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.260ms returns 0  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.006ms  
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command read_device_family executed for 0 milliseconds with result 0
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.907Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] set_core_data
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Set core data:
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Device ID: nRF52
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Expected core: 234881279
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Existing Expected core: 4294967295
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Coprocessor: APPLICATION
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   AHB AP index: 0
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][]   Core base address: 4294967295
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---set_coresight_ahb_ap_index
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;CORESIGHT_SetIndexAHBAPToUse = 0&amp;quot;, ...).   
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.002ms returns 0x00  
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_ExecCommand(&amp;quot;device = nRF52&amp;quot;, ...).   
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Device &amp;quot;NRF52&amp;quot; selected.
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Device &amp;quot;NRF52&amp;quot; selected.
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 1.496ms returns 0x00  
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command select_family executed for 1 milliseconds with result 0
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] read_device_info
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.006ms returns 0x01  
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_read_device_version
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:30:13.908Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.908Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.909Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command read_device_info executed for 2 milliseconds with result -90
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.909Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][DebugProbe][] Failed reading device info.
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.909Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: Could not read device info because the device is locked.
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.909Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: No actions other than recover will be available.
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.909Z] [nrfutil-device] WARN - [jlink] [NRFJPROG][DebugProbe][] Warning: Try recovering the device if you want to unlock it.
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] recover
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] recover
[2023-02-23T09:30:13.909Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.909Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.909Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] recover
[2023-02-23T09:30:13.916Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.278ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.278ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.273ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.205ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.203ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.229ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.196ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.171ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.250ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.231ms returns 0  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.224ms returns 0  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.197ms returns 0  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][nRF52][] Access protection is enabled, can&amp;#39;t read device version.
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.005ms  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command read_device_info executed for 2 milliseconds with result -90
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] recover
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.008ms returns 0x01  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_recover
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.273ms returns 0  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.277ms returns 0  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.228ms returns 0  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.207ms returns 0  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.258ms returns 0  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.280ms returns 0  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.233ms returns 0  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.181ms returns 0  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.174ms returns 0  
[2023-02-23T09:30:13.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:13.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.412Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.412Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.412Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.325ms returns 0  
[2023-02-23T09:30:14.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.412Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:14.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:14.917Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.917Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:14.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:14.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:14.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:14.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.431ms returns 0  
[2023-02-23T09:30:14.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:14.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:15.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.412Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:15.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.412Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:15.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.412Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:15.412Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.412Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:15.422Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.422Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:15.422Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.422Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.214ms returns 0  
[2023-02-23T09:30:15.422Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.422Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.304ms returns 0  
[2023-02-23T09:30:15.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:15.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.423Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.423Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.423Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.295ms returns 0  
[2023-02-23T09:30:16.423Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.423Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:16.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:16.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:16.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:16.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:16.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:16.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.296ms returns 0  
[2023-02-23T09:30:16.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:16.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.424Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.424Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.424Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.284ms returns 0  
[2023-02-23T09:30:17.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.424Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:17.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:17.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:17.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.918Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:17.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.918Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:17.918Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:17.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.322ms returns 0  
[2023-02-23T09:30:17.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:17.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.424Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.424Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.424Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.387ms returns 0  
[2023-02-23T09:30:18.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.424Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.261ms returns 0  
[2023-02-23T09:30:18.919Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:18.919Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.325ms returns 0  
[2023-02-23T09:30:19.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.920Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.920Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.920Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.287ms returns 0  
[2023-02-23T09:30:19.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:19.920Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.239ms returns 0  
[2023-02-23T09:30:20.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:20.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.920Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:20.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.920Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:20.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.920Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:20.920Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:20.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:20.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.269ms returns 0  
[2023-02-23T09:30:20.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:20.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:21.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.425Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:21.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.426Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:21.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.426Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:21.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.426Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:21.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.426Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:21.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.426Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.433ms returns 0  
[2023-02-23T09:30:21.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.426Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.265ms returns 0  
[2023-02-23T09:30:21.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:21.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.426Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.426Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.426Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.345ms returns 0  
[2023-02-23T09:30:22.426Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.426Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.276ms returns 0  
[2023-02-23T09:30:22.921Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:22.921Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.424Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.424Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:23.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:23.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.357ms returns 0  
[2023-02-23T09:30:23.425Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.425Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.304ms returns 0  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_debug_reset
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.216ms returns 0  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.182ms returns 0  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.245ms returns 0  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.208ms returns 0  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.248ms returns 0  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.263ms returns 0  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.211ms returns 0  
[2023-02-23T09:30:23.929Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.929Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.314ms returns 0  
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.315ms returns 0  
[2023-02-23T09:30:23.939Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.939Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.320ms returns 0  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.281ms returns 0  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.285ms returns 0  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.276ms returns 0  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.949Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:23.949Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.362ms returns 0  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.301ms returns 0  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.297ms returns 0  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.333ms returns 0  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.269ms returns 0  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.283ms returns 0  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.313ms returns 0  
[2023-02-23T09:30:23.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:23.950Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.454Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.454Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.454Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.305ms returns 0  
[2023-02-23T09:30:24.454Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.454Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.959Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.959Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.959Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.290ms returns 0  
[2023-02-23T09:30:24.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:24.959Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.453Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.453Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:25.453Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.453Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.292ms returns 0  
[2023-02-23T09:30:25.454Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.454Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:25.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:25.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:25.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.950Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:25.950Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.951Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:25.951Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.951Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:25.951Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.951Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.295ms returns 0  
[2023-02-23T09:30:25.951Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:25.951Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.455Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.455Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.455Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.364ms returns 0  
[2023-02-23T09:30:26.455Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.455Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.954Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.954Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.954Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.310ms returns 0  
[2023-02-23T09:30:26.954Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:26.954Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.461Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.461Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.461Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.402ms returns 0  
[2023-02-23T09:30:27.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.461Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.956Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.956Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.956Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.215ms returns 0  
[2023-02-23T09:30:27.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:27.956Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.461Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.461Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.461Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.278ms returns 0  
[2023-02-23T09:30:28.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.461Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:28.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.956Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:28.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.957Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:28.957Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.957Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:28.957Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.957Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:28.957Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.957Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:28.957Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.957Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.265ms returns 0  
[2023-02-23T09:30:28.957Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:28.957Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:29.461Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.462Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.462Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.462Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.208ms returns 0  
[2023-02-23T09:30:29.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.462Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:29.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.956Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:29.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.956Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:29.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.956Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:29.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.956Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:29.956Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.957Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:29.957Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.957Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.265ms returns 0  
[2023-02-23T09:30:29.957Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:29.957Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.462Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.462Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.462Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.317ms returns 0  
[2023-02-23T09:30:30.462Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.462Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.958Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.958Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.958Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.222ms returns 0  
[2023-02-23T09:30:30.958Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:30.958Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.463Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.463Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.463Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.315ms returns 0  
[2023-02-23T09:30:31.463Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.463Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.959Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.959Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.959Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.309ms returns 0  
[2023-02-23T09:30:31.959Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:31.959Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.456Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.456Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.456Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.303ms returns 0  
[2023-02-23T09:30:32.456Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.456Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:32.961Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.961Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:32.961Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.961Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:32.961Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:32.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.962Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:32.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.962Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:32.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.962Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.215ms returns 0  
[2023-02-23T09:30:32.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:32.962Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.457Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.457Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.457Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.321ms returns 0  
[2023-02-23T09:30:33.457Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.457Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.961Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.302ms returns 0  
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_debug_reset
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.962Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.170ms returns 0  
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.249ms returns 0  
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.963Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:33.963Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.236ms returns 0  
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.235ms returns 0  
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.964Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:33.964Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.244ms returns 0  
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.148ms returns 0  
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.965Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.174ms returns 0  
[2023-02-23T09:30:33.965Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.966Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.344ms returns 0  
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.972Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-02-23T09:30:33.972Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.973Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.258ms returns 0  
[2023-02-23T09:30:33.973Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.973Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.382ms returns 0  
[2023-02-23T09:30:33.982Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.982Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.434ms returns 0  
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.422ms returns 0  
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.983Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.285ms returns 0  
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.314ms returns 0  
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.984Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.985Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.985Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.985Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:33.985Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.985Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:33.985Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.985Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.300ms returns 0  
[2023-02-23T09:30:33.985Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.985Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.985Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.985Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:33.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.656ms returns 0  
[2023-02-23T09:30:33.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.346ms returns 0  
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.398ms returns 0  
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.341ms returns 0  
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:33.994Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.994Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-02-23T09:30:33.994Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.355ms returns 0  
[2023-02-23T09:30:33.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:33.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.487Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.487Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.487Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.320ms returns 0  
[2023-02-23T09:30:34.487Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.487Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.194ms returns 0  
[2023-02-23T09:30:34.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:34.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:35.487Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.488Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.488Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.488Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.415ms returns 0  
[2023-02-23T09:30:35.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.488Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:35.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.254ms returns 0  
[2023-02-23T09:30:35.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:35.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.488Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.488Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.488Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.437ms returns 0  
[2023-02-23T09:30:36.488Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.488Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.268ms returns 0  
[2023-02-23T09:30:36.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:36.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.492Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.492Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.492Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.270ms returns 0  
[2023-02-23T09:30:37.492Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.492Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:37.987Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.988Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.988Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.988Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.250ms returns 0  
[2023-02-23T09:30:37.988Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:37.988Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.495Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.495Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.495Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.352ms returns 0  
[2023-02-23T09:30:38.495Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.495Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.991Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.991Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.991Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.343ms returns 0  
[2023-02-23T09:30:38.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:38.991Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.496Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.496Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.496Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.344ms returns 0  
[2023-02-23T09:30:39.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.496Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:39.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.991Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:39.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.991Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:39.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:39.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:39.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:39.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.360ms returns 0  
[2023-02-23T09:30:39.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:39.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:40.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.496Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:40.496Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.496Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:40.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.497Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:40.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.497Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:40.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.497Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:40.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.497Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.350ms returns 0  
[2023-02-23T09:30:40.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.497Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:40.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.991Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:40.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.991Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:40.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.991Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:40.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.991Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:40.991Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:40.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.349ms returns 0  
[2023-02-23T09:30:40.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:40.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.497Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.497Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.497Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.342ms returns 0  
[2023-02-23T09:30:41.497Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.497Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.444ms returns 0  
[2023-02-23T09:30:41.992Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:41.992Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.498Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.498Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.498Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.264ms returns 0  
[2023-02-23T09:30:42.498Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.498Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.238ms returns 0  
[2023-02-23T09:30:42.993Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:42.993Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.499Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.499Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:43.499Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.499Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:43.499Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.499Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:43.499Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.499Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:43.500Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.500Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:43.500Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.500Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.293ms returns 0  
[2023-02-23T09:30:43.500Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.500Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000001
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.299ms returns 0  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_debug_reset
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.215ms returns 0  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.267ms returns 0  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.264ms returns 0  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.249ms returns 0  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.284ms returns 0  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.240ms returns 0  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.219ms returns 0  
[2023-02-23T09:30:43.995Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:43.995Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.230ms returns 0  
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] write_access_port_register
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_access_port_register
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.015Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-02-23T09:30:44.015Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.016Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.193ms returns 0  
[2023-02-23T09:30:44.016Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.016Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.022Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.022Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command recover executed for 30113 milliseconds with result -21
[2023-02-23T09:30:44.022Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.022Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][DebugProbe][] Failed while performing recovery.
[2023-02-23T09:30:44.022Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.022Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] probe_uninit
[2023-02-23T09:30:44.022Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.022Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][HighLevel][] internal_probe_uninit
[2023-02-23T09:30:44.022Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.297ms returns 0  
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.025Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.025Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.388ms returns 0  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.404ms returns 0  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.315ms returns 0  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.026Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.378ms returns 0  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.350ms returns 0  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.367ms returns 0  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.027Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.027Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.359ms returns 0  
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.301ms returns 0  
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.280ms returns 0  
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.028Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_read_device_version
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_readback_status
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] Just_is_ctrl_ap_available
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.028Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 15
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.256ms returns 0  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.358ms returns 0  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.310ms returns 0  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.029Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.310ms returns 0  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x02880000
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.283ms returns 0  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 1, DP Bank 0, AP Bank 0
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.232ms returns 0  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:44.030Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.030Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.306ms returns 0  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.314ms returns 0  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.284ms returns 0  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] read_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_access_port_register
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000000
[2023-02-23T09:30:44.031Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.031Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.327ms returns 0  
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] Log message from highlevel dll has level info, is supposed to be a progress document, but a progress callback is not provided. See comment in /home/vsts/agents/2.211.1/vcpkg/buildtrees/nrf-device-lib/src/0.12.8-1-2cd3acb624.clean/src/jlink/jlink_plugin.cpp about broken highleveldll API design.
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] ERROR - [jlink] [NRFJPROG][nRF52][] Access protection is enabled, can&amp;#39;t read device version.
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.020ms  
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command recover executed for 30113 milliseconds with result -21
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] close
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_emu
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_IsOpen()  
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.016ms returns 0x01  
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Lock()  
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] close
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] disconnect_from_emu
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_disconnect_from_emu
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] is_connected_to_device
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Select AP 255, DP Bank 0, AP Bank 255
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.032Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.212ms returns 0  
[2023-02-23T09:30:44.032Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0xF0000040
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.210ms returns 0  
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] unpower_debug_and_system_regions
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_write_debug_port_register
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000)  
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.168ms returns 0  
[2023-02-23T09:30:44.033Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.033Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_is_debug_region_powered
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_read_debug_port_register
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] ---just_select_debug_port_register
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] Value=0x00000040
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.277ms returns 0  
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_HasError()  
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] - 0.020ms  
[2023-02-23T09:30:44.036Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.036Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][JLink][] JLINK_Close()  
[2023-02-23T09:30:44.056Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.056Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][SeggerBackend][] Segger Backend closed.
[2023-02-23T09:30:44.056Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.056Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][nRF52][] nRF family DLL closed
[2023-02-23T09:30:44.059Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.059Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command close executed for 36 milliseconds with result 0
[2023-02-23T09:30:44.059Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.059Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] terminate
[2023-02-23T09:30:44.059Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.059Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Command terminate executed for 0 milliseconds with result 0
[2023-02-23T09:30:44.066Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.066Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command close executed for 36 milliseconds with result 0
[2023-02-23T09:30:44.066Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.066Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Command terminate executed for 0 milliseconds with result 0
[2023-02-23T09:30:44.066Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.066Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Worker][] Executed 8 commands for 30722 milliseconds
[2023-02-23T09:30:44.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Child process terminated with result 0
[2023-02-23T09:30:44.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Worker process exited with code: 0
[2023-02-23T09:30:44.077Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.077Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] Worker process exited with code: 0
[2023-02-23T09:30:44.166Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.166Z] [nrfutil-device] TRACE - [jlink] [NRFJPROG][Client][] Executed 8 commands for 30723 milliseconds
[2023-02-23T09:30:44.166Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.166Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][Client][] terminate
[2023-02-23T09:30:44.168Z] [nrfutil-device] DEBUG - [jlink] No SEGGER instance provided
[2023-02-23T09:30:44.168Z] [nrfutil-device] DEBUG - [jlink] [NRFJPROG][DebugProbe][] uninitialize
[2023-02-23T09:30:44.168Z] [nrfutil-device] DEBUG - [jlink] Unable to recover at retry (this is not necessarily an error): 1, exception message: RECOVER_FAILED
[2023-02-23T09:30:44.170Z] [nrfutil-device] DEBUG - Task 1677144582495104 is already completed
[2023-02-23T09:30:44.170Z] [nrfutil-device] DEBUG - ~async_task id: 1677144582495104
[2023-02-23T09:30:44.170Z] [nrfutil-device] INFO - close plugin dll at path: /home/suso/.nrfutil/lib/nrfutil-device/nrfdl-jlink-plugin.nrfdl
[2023-02-23T09:30:44.351Z] [nrfutil-device] TRACE - deregistering event source from poller&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;It looks like the device cannot be recovered because Access Protection is active during the recovery process?&lt;/p&gt;
&lt;p&gt;Let me know if you have any tips to fix this issue. It is currently blocking me to deliver a prototype to a client.&lt;/p&gt;
&lt;p&gt;Best,&lt;/p&gt;
&lt;p&gt;Jesus&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411496?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 21:50:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ab7b48df-98cd-4ddd-af37-41c5b78a5b8f</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Thanks for the information.&lt;/p&gt;
&lt;p&gt;It would be very useful if we could get the log output from nRF Util, as I mentioned in the other ticket regarding the same issue (&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/96192/error-failed-to-connect-to-target"&gt;Error &amp;quot;failed to connect to target&amp;quot;&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;You can upload the logs here, and I can forward it to our developers.&lt;/p&gt;
&lt;p&gt;Br, &lt;br /&gt;Joakim&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411473?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 17:36:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e3e3c66e-c622-4740-919c-bc6c30712c79</guid><dc:creator>Jesus Cano</dc:creator><description>&lt;p&gt;HI Shahin97,&lt;/p&gt;
&lt;p&gt;Thank you for your suggestion. It does not work though.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;When I start RTT Viewer, it prompts me to clear the device as you said:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/Selection_5F00_010.png" /&gt;&lt;/p&gt;
&lt;p&gt;A few seconds after clicking &amp;quot;Yes&amp;quot; button I get the message &amp;quot;Could not connect to the target&amp;quot;:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/Selection_5F00_011.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;These are the logs for RTT Viewer:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;LOG: J-Link RTT Viewer V7.86a: Logging started.
LOG: Terminal 0 added.
LOG: Connecting to J-Link via USB...
LOG: Updating firmware:  J-Link OB-nRF5340-NordicSemi compiled Nov  7 2022 16:22:01
LOG: Replacing firmware: J-Link OB-nRF5340-NordicSemi compiled Jul  2 2021 10:55:25
LOG: Waiting for new firmware to boot
LOG: New firmware booted successfully
LOG: Device &amp;quot;NRF52832_XXAA&amp;quot; selected.
LOG: InitTarget() start
LOG: Device will be unsecured now.
LOG: InitTarget() end - Took 11522ms
LOG: Connect failed. Resetting via Reset pin and trying again.
LOG: InitTarget() start
LOG: Device will be unsecured now.
LOG: InitTarget() end - Took 6403ms
ERROR: Could not connect to target device.
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411468?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 17:02:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:69f7c1a3-0210-41ee-bafc-ee928f2f97f6</guid><dc:creator>Shahin97</dc:creator><description>&lt;p&gt;I&amp;#39;m just brainstorming, One thing you can try that worked for me was loading RTT viewer. If I have a protected application, it prompts me to clear the device.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411465?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 16:48:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:54851b94-b103-47eb-9fea-c932dbfd6213</guid><dc:creator>Jesus Cano</dc:creator><description>&lt;p&gt;I tried that command and I get this Error message&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;gt; nrfjprog --recover --log
Recovering device. This operation might take 30s.
[error] [  nRF52] - Access protection is enabled, can&amp;#39;t read device version.
ERROR: Recover failed. Please make sure that the correct device family is given
ERROR: and try again.&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The log file is the following:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;[2023-Feb-22 16:43:25] [debug] --------------------------------------------------------------------------------
[2023-Feb-22 16:43:25] [debug] ./nrfjprog --recover --log 
[2023-Feb-22 16:43:25] [debug] nrfjprog version 10.19.0 external
[2023-Feb-22 16:43:25] [debug] --------------------------------------------------------------------------------
[2023-Feb-22 16:43:25] [ info] Load library at /home/suso/intellegens/BATERY/nrf-command-line-tools/lib/libnrfjprogdll.so.
[2023-Feb-22 16:43:25] [ info] Library loaded, loading member functions.
[2023-Feb-22 16:43:25] [ info] Member functions succesfully loaded.
[2023-Feb-22 16:43:25] [debug] [ Client] - open
[2023-Feb-22 16:43:25] [debug] [ Client] - start
[2023-Feb-22 16:43:25] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence a69e85e9-196d-46a9-9690-f5f8a1813ed0.
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger
[2023-Feb-22 16:43:25] [debug] [  JLink] - Logger sink registered in JLink logger
[2023-Feb-22 16:43:25] [debug] [  nRFXX] - open
[2023-Feb-22 16:43:25] [debug] [  nRFXX] - just_check_family
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - open_dll
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect.
[2023-Feb-22 16:43:25] [trace] [ Client] - Command open executed for 4 milliseconds with result 0
[2023-Feb-22 16:43:25] [debug] [ Client] - config
[2023-Feb-22 16:43:25] [trace] [ Client] - Command config executed for 2 milliseconds with result 0
[2023-Feb-22 16:43:25] [debug] [ Client] - enum_emu_snr
[2023-Feb-22 16:43:25] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.
[2023-Feb-22 16:43:25] [ info] [SeggerBackend] - Library loaded, loading member functions.
[2023-Feb-22 16:43:25] [ info] [SeggerBackend] - Member functions succesfully loaded.
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - Set batch mode
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - dll_version
[2023-Feb-22 16:43:25] [ info] [SeggerBackend] - Segger dll version 7.56.b loaded.
[2023-Feb-22 16:43:25] [trace] [ Worker] - Command open executed for 2 milliseconds with result 0
[2023-Feb-22 16:43:25] [debug] [  nRFXX] - config
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - enum_emu_snr
[2023-Feb-22 16:43:25] [trace] [ Worker] - Command config executed for 2 milliseconds with result 0
[2023-Feb-22 16:43:25] [debug] [  nRFXX] - enum_emu_con_info
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - enum_emu_con_info
[2023-Feb-22 16:43:25] [trace] [ Client] - Command enum_emu_con_info executed for 167 milliseconds with result 0
[2023-Feb-22 16:43:25] [debug] [ Client] - connect_to_emu_with_snr
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:25] [trace] [ Worker] - Command enum_emu_con_info executed for 167 milliseconds with result 0
[2023-Feb-22 16:43:25] [debug] [  nRFXX] - connect_to_emu_with_snr
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - connect_to_emu_with_snr
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - ---just_enum_emu_snr
[2023-Feb-22 16:43:25] [debug] [SeggerBackend] - ---just_get_num_emus
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - Segger logging enabled.
[2023-Feb-22 16:43:26] [trace] [  JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Jul  2 2021 10:55:25
[2023-Feb-22 16:43:26] [trace] [  JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Jul  2 2021 10:55:25
[2023-Feb-22 16:43:26] [trace] [ Client] - Command connect_to_emu_with_snr executed for 508 milliseconds with result 0
[2023-Feb-22 16:43:26] [debug] [ Client] - read_connected_emu_snr
[2023-Feb-22 16:43:26] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0
[2023-Feb-22 16:43:26] [debug] [ Client] - recover
[2023-Feb-22 16:43:26] [trace] [  JLink] - Hardware: V1.00
[2023-Feb-22 16:43:26] [trace] [  JLink] - S/N: 1050385806
[2023-Feb-22 16:43:26] [trace] [  JLink] - OEM: SEGGER
[2023-Feb-22 16:43:26] [trace] [  JLink] - Feature(s): None
[2023-Feb-22 16:43:26] [trace] [  JLink] - TELNET listener socket opened on port 19021
[2023-Feb-22 16:43:26] [trace] [  JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s)
[2023-Feb-22 16:43:26] [trace] [  JLink] - WEBSRV Webserver running on local port 19080
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 16.658ms returns &amp;quot;O.K.&amp;quot;  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_Lock()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_ExecCommand(&amp;quot;SetRestartOnClose = 0&amp;quot;, ...).   
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.002ms returns 0x01  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_ExecCommand(&amp;quot;DisableFlashDL&amp;quot;, ...).   
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.007ms returns 0x00  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_ExecCommand(&amp;quot;ExcludeFlashCacheRange 0x0-0xFFFFFFFF&amp;quot;, ...).   
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.001ms returns 0x00  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_SetHookUnsecureDialog  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_SetHookUnsecureDialog(...)
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.004ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.694ms returns 0x00  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_GetSpeedInfo()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - 128000000 Hz / n, n &amp;gt;= 64
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.005ms  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_SetSpeed(2000)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.126ms  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_GetSpeed()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.003ms returns 2000  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - SWD clock set to 2000kHz
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_GetSN()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.003ms returns 1050385806  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.004ms  
[2023-Feb-22 16:43:26] [debug] [  nRFXX] - read_device_family
[2023-Feb-22 16:43:26] [debug] [  nRFXX] - read_device_family
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_IsOpen()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.002ms returns 0x01  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_Lock()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_debug_port_idr
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_debug_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_read_debug_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - coresight_configure
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_GetHWStatus(...)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.177ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_Configure()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.354ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_debug_port_idr
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_debug_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_read_debug_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_debug_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.303ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - Value=0x2BA01477
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.349ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_debug_port_register
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - Value=0x2BA01477
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.302ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [ info] [  nRFXX] - Discovered device from family NRF52.
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.005ms  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - set_core_data
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - Set core data:
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] -   Device ID: nRF52
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] -   Expected core: 234881279
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] -   Existing Expected core: 4294967295
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] -   Coprocessor: APPLICATION
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] -   AHB AP index: 0
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] -   Core base address: 4294967295
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_ExecCommand(&amp;quot;CORESIGHT_SetIndexAHBAPToUse = 0&amp;quot;, ...).   
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.001ms returns 0x00  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_ExecCommand(&amp;quot;device = nRF52&amp;quot;, ...).   
[2023-Feb-22 16:43:26] [trace] [  JLink] - Device &amp;quot;NRF52&amp;quot; selected.
[2023-Feb-22 16:43:26] [trace] [  JLink] - Device &amp;quot;NRF52&amp;quot; selected.
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 1.358ms returns 0x00  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 508 milliseconds with result 0
[2023-Feb-22 16:43:26] [debug] [  nRF52] - read_connected_emu_snr
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_IsOpen()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.005ms returns 0x01  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_Lock()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_connected_emu_snr
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.002ms  
[2023-Feb-22 16:43:26] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0
[2023-Feb-22 16:43:26] [debug] [  nRF52] - recover
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_IsOpen()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.006ms returns 0x01  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_Lock()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:26] [debug] [  nRF52] - Just_recover
[2023-Feb-22 16:43:26] [debug] [  nRF52] - Just_is_ctrl_ap_available
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_read_debug_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_debug_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.224ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - Value=0xF0000040
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.213ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.182ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.280ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.236ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.234ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.238ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.248ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.211ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:26] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:26] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:26] [trace] [  JLink] - - 0.360ms returns 0  
[2023-Feb-22 16:43:26] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:27] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:27] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:27] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:27] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:27] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:27] [trace] [  JLink] - - 0.442ms returns 0  
[2023-Feb-22 16:43:27] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:27] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:27] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:27] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:27] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:27] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:27] [trace] [  JLink] - - 0.469ms returns 0  
[2023-Feb-22 16:43:27] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:28] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:28] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:28] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:28] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:28] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:28] [trace] [  JLink] - - 0.512ms returns 0  
[2023-Feb-22 16:43:28] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:28] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:28] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:28] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:28] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:28] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:28] [trace] [  JLink] - - 0.524ms returns 0  
[2023-Feb-22 16:43:28] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:29] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:29] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:29] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:29] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:29] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:29] [trace] [  JLink] - - 0.248ms returns 0  
[2023-Feb-22 16:43:29] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:29] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:29] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:29] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:29] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:29] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:29] [trace] [  JLink] - - 0.488ms returns 0  
[2023-Feb-22 16:43:29] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:30] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:30] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:30] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:30] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:30] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:30] [trace] [  JLink] - - 0.481ms returns 0  
[2023-Feb-22 16:43:30] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:30] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:30] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:30] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:30] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:30] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:30] [trace] [  JLink] - - 0.380ms returns 0  
[2023-Feb-22 16:43:30] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:31] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:31] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:31] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:31] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:31] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:31] [trace] [  JLink] - - 0.443ms returns 0  
[2023-Feb-22 16:43:31] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:31] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:31] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:31] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:31] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:31] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:31] [trace] [  JLink] - - 0.426ms returns 0  
[2023-Feb-22 16:43:31] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:32] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:32] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:32] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:32] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:32] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:32] [trace] [  JLink] - - 0.321ms returns 0  
[2023-Feb-22 16:43:32] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:32] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:32] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:32] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:32] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:32] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:32] [trace] [  JLink] - - 0.361ms returns 0  
[2023-Feb-22 16:43:32] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:33] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:33] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:33] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:33] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:33] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:33] [trace] [  JLink] - - 0.478ms returns 0  
[2023-Feb-22 16:43:33] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:33] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:33] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:33] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:33] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:33] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:33] [trace] [  JLink] - - 0.505ms returns 0  
[2023-Feb-22 16:43:33] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:34] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:34] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:34] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:34] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:34] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:34] [trace] [  JLink] - - 0.456ms returns 0  
[2023-Feb-22 16:43:34] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:34] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:34] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:34] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:34] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:34] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:34] [trace] [  JLink] - - 0.480ms returns 0  
[2023-Feb-22 16:43:34] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:35] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:35] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:35] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:35] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:35] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:35] [trace] [  JLink] - - 0.225ms returns 0  
[2023-Feb-22 16:43:35] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:35] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:35] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:35] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:35] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:35] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:35] [trace] [  JLink] - - 0.361ms returns 0  
[2023-Feb-22 16:43:35] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.444ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [  nRF52] - Just_debug_reset
[2023-Feb-22 16:43:36] [debug] [  nRF52] - Just_is_ctrl_ap_available
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.351ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.410ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.385ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.366ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.361ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.297ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.341ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.389ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.374ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [  nRF52] - Just_readback_status
[2023-Feb-22 16:43:36] [debug] [  nRF52] - Just_is_ctrl_ap_available
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.367ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.420ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.431ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.419ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.322ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.410ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.411ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.438ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.357ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.342ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [ info] [  nRF52] - Protection status read as APPROTECT -&amp;gt; ALL
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.328ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:36] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:36] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:36] [trace] [  JLink] - - 0.512ms returns 0  
[2023-Feb-22 16:43:36] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:37] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:37] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:37] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:37] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:37] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:37] [trace] [  JLink] - - 1.580ms returns 0  
[2023-Feb-22 16:43:37] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:37] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:37] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:37] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:37] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:37] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:37] [trace] [  JLink] - - 0.479ms returns 0  
[2023-Feb-22 16:43:37] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:38] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:38] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:38] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:38] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:38] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:38] [trace] [  JLink] - - 0.395ms returns 0  
[2023-Feb-22 16:43:38] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:38] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:38] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:38] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:38] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:38] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:38] [trace] [  JLink] - - 0.417ms returns 0  
[2023-Feb-22 16:43:38] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:39] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:39] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:39] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:39] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:39] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:39] [trace] [  JLink] - - 0.404ms returns 0  
[2023-Feb-22 16:43:39] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:39] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:39] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:39] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:39] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:39] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:39] [trace] [  JLink] - - 0.530ms returns 0  
[2023-Feb-22 16:43:39] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:40] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:40] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:40] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:40] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:40] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:40] [trace] [  JLink] - - 0.705ms returns 0  
[2023-Feb-22 16:43:40] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:40] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:40] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:40] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:40] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:40] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:40] [trace] [  JLink] - - 0.459ms returns 0  
[2023-Feb-22 16:43:40] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:41] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:41] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:41] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:41] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:41] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:41] [trace] [  JLink] - - 0.511ms returns 0  
[2023-Feb-22 16:43:41] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:41] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:41] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:41] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:41] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:41] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:41] [trace] [  JLink] - - 0.487ms returns 0  
[2023-Feb-22 16:43:41] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:42] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:42] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:42] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:42] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:42] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:42] [trace] [  JLink] - - 0.432ms returns 0  
[2023-Feb-22 16:43:42] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:42] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:42] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:42] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:42] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:42] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:42] [trace] [  JLink] - - 0.335ms returns 0  
[2023-Feb-22 16:43:42] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:43] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:43] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:43] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:43] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:43] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:43] [trace] [  JLink] - - 0.492ms returns 0  
[2023-Feb-22 16:43:43] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:43] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:43] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:43] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:43] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:43] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:43] [trace] [  JLink] - - 0.409ms returns 0  
[2023-Feb-22 16:43:43] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:44] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:44] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:44] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:44] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:44] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:44] [trace] [  JLink] - - 0.547ms returns 0  
[2023-Feb-22 16:43:44] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:44] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:44] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:44] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:44] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:44] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:44] [trace] [  JLink] - - 0.382ms returns 0  
[2023-Feb-22 16:43:44] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:45] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:45] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:45] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:45] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:45] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:45] [trace] [  JLink] - - 0.361ms returns 0  
[2023-Feb-22 16:43:45] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:45] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:45] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:45] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:45] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:45] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:45] [trace] [  JLink] - - 0.417ms returns 0  
[2023-Feb-22 16:43:45] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.573ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [  nRF52] - Just_debug_reset
[2023-Feb-22 16:43:46] [debug] [  nRF52] - Just_is_ctrl_ap_available
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.263ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.225ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.235ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.206ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.242ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.249ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.234ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.230ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.259ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [  nRF52] - Just_readback_status
[2023-Feb-22 16:43:46] [debug] [  nRF52] - Just_is_ctrl_ap_available
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.279ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.243ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.250ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.249ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.200ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 1.256ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.226ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.350ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.305ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.236ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:46] [ info] [  nRF52] - Protection status read as APPROTECT -&amp;gt; ALL
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:46] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000001)  
[2023-Feb-22 16:43:46] [trace] [  JLink] - - 0.172ms returns 0  
[2023-Feb-22 16:43:46] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:47] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:47] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:47] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:47] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:47] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:47] [trace] [  JLink] - - 0.332ms returns 0  
[2023-Feb-22 16:43:47] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:47] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:47] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:47] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:47] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:47] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:47] [trace] [  JLink] - - 0.464ms returns 0  
[2023-Feb-22 16:43:47] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:48] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:48] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:48] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:48] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:48] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:48] [trace] [  JLink] - - 0.223ms returns 0  
[2023-Feb-22 16:43:48] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:48] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:48] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:48] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:48] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:48] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:48] [trace] [  JLink] - - 0.507ms returns 0  
[2023-Feb-22 16:43:48] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:49] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:49] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:49] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:49] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:49] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:49] [trace] [  JLink] - - 0.222ms returns 0  
[2023-Feb-22 16:43:49] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:49] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:49] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:49] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:49] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:49] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:49] [trace] [  JLink] - - 0.496ms returns 0  
[2023-Feb-22 16:43:49] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:50] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:50] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:50] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:50] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:50] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:50] [trace] [  JLink] - - 0.473ms returns 0  
[2023-Feb-22 16:43:50] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:50] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:50] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:50] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:50] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:50] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:50] [trace] [  JLink] - - 0.243ms returns 0  
[2023-Feb-22 16:43:50] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:51] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:51] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:51] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:51] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:51] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:51] [trace] [  JLink] - - 0.331ms returns 0  
[2023-Feb-22 16:43:51] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:51] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:51] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:51] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:51] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:51] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:51] [trace] [  JLink] - - 0.411ms returns 0  
[2023-Feb-22 16:43:51] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:52] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:52] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:52] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:52] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:52] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:52] [trace] [  JLink] - - 0.419ms returns 0  
[2023-Feb-22 16:43:52] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:52] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:52] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:52] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:52] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:52] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:52] [trace] [  JLink] - - 0.413ms returns 0  
[2023-Feb-22 16:43:52] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:53] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:53] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:53] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:53] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:53] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:53] [trace] [  JLink] - - 0.309ms returns 0  
[2023-Feb-22 16:43:53] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:53] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:53] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:53] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:53] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:53] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:53] [trace] [  JLink] - - 0.359ms returns 0  
[2023-Feb-22 16:43:53] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:54] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:54] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:54] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:54] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:54] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:54] [trace] [  JLink] - - 0.326ms returns 0  
[2023-Feb-22 16:43:54] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:54] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:54] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:54] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:54] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:54] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:54] [trace] [  JLink] - - 0.324ms returns 0  
[2023-Feb-22 16:43:54] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:55] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:55] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:55] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:55] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:55] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:55] [trace] [  JLink] - - 0.280ms returns 0  
[2023-Feb-22 16:43:55] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:55] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:55] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:55] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:55] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:55] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:55] [trace] [  JLink] - - 0.458ms returns 0  
[2023-Feb-22 16:43:55] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.478ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x02)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000001
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.445ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [  nRF52] - Just_debug_reset
[2023-Feb-22 16:43:56] [debug] [  nRF52] - Just_is_ctrl_ap_available
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.418ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.430ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.294ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.418ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.490ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.278ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000001)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.408ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x00, 0x00000000)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.307ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - write_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_write_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(AP reg 0x01, 0x00000000)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.292ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [  nRF52] - Just_readback_status
[2023-Feb-22 16:43:56] [debug] [  nRF52] - Just_is_ctrl_ap_available
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.328ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.370ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.419ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.431ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.347ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.292ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.301ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.340ms returns 0  
[2023-Feb-22 16:43:56] [trace] [ Client] - Command recover executed for 30127 milliseconds with result -21
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.321ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.371ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [ info] [  nRF52] - Protection status read as APPROTECT -&amp;gt; ALL
[2023-Feb-22 16:43:56] [debug] [  nRF52] - Just_read_device_version
[2023-Feb-22 16:43:56] [debug] [  nRF52] - Just_readback_status
[2023-Feb-22 16:43:56] [debug] [  nRF52] - Just_is_ctrl_ap_available
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.350ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.378ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.365ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.264ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x02880000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.269ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.328ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.362ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.351ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.314ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_access_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_access_port_register
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - Value=0x00000000
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.311ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [ info] [  nRF52] - Protection status read as APPROTECT -&amp;gt; ALL
[2023-Feb-22 16:43:56] [error] [  nRF52] - Access protection is enabled, can&amp;#39;t read device version.
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.020ms  
[2023-Feb-22 16:43:56] [trace] [ Worker] - Command recover executed for 30127 milliseconds with result -21
[2023-Feb-22 16:43:56] [debug] [  nRF52] - close
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - is_connected_to_emu
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_IsOpen()  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.021ms returns 0x01  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_Lock()  
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - close
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - disconnect_from_emu
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_disconnect_from_emu
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - is_connected_to_device
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_is_debug_region_powered
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_read_debug_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - ---just_select_debug_port_register
[2023-Feb-22 16:43:56] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000)  
[2023-Feb-22 16:43:56] [trace] [  JLink] - - 0.287ms returns 0  
[2023-Feb-22 16:43:56] [trace] [  JLink] - JLINK_HasError()  &lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52-DK "Failed to connect to target" and "Access protection is enabled, can't read device version"</title><link>https://devzone.nordicsemi.com/thread/411351?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 12:15:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5bda7049-459f-4c9c-81b5-4fd53d59fcce</guid><dc:creator>Shahin97</dc:creator><description>&lt;p&gt;Have you tried&amp;nbsp;&amp;nbsp;nrfjprog --recover&lt;/p&gt;
&lt;p&gt;The response you should get should be:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span class="ui-provider wu b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;Recovering device. This operation might take 30s.&lt;br /&gt;Erasing user code and UICR flash areas.&lt;br /&gt;Writing image to disable ap protect.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>