Communication with SD Card with nRF54L15DK

Hello,

I am trying to communicate with an SD Card with a NRF54L15DK but it doesn't work.
Here is my different files :

&spi21 {
    compatible = "nordic,nrf-spim";
    status = "okay";
    pinctrl-0 = <&spi21_default>;
    pinctrl-names = "default";
    cs-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;

    sdhc0: sdhc@0 {
        compatible = "zephyr,mmc-spi-slot";
        reg = <0>;
        status = "okay";
        label = "SDHC0";
        spi-max-frequency = <400000>; /* fréquence d'initialisation */
    };
};

&pinctrl {
    spi21_default: spi21_default {
        group1 {
            psels = <NRF_PSEL(SPIM_SCK, 2, 1)>,   /* P2.01 */
                    <NRF_PSEL(SPIM_MOSI, 2, 2)>,  /* P2.02 */
                    <NRF_PSEL(SPIM_MISO, 2, 4)>;  /* P2.04 */
        };
    };
};
# SPI et périphériques
CONFIG_SPI=y
CONFIG_DISK_ACCESS=y

# Système de fichiers
CONFIG_FILE_SYSTEM=y
CONFIG_FAT_FILESYSTEM_ELM=y
CONFIG_FS_FATFS_LFN=y          # (optionnel) support des noms longs
CONFIG_FS_LOG_LEVEL_DBG=y

# Logs et debug
CONFIG_LOG=y
CONFIG_LOG_DEFAULT_LEVEL=3
CONFIG_STDOUT_CONSOLE=y
CONFIG_PRINTK=y

# Stack principale un peu plus grande
CONFIG_MAIN_STACK_SIZE=4096
CONFIG_SPI_NRFX_RAM_BUFFER_SIZE=8
CONFIG_GPIO=y

/*
 * Copyright (c) 2019 Tavish Naruka <[email protected]>
 *
 * SPDX-License-Identifier: Apache-2.0
 */

/* Sample which uses the filesystem API and SDHC driver */

#include <zephyr/kernel.h>
#include <zephyr/device.h>
#include <zephyr/storage/disk_access.h>
#include <zephyr/fs/fs.h>
#include <ff.h>     /* Fournit FATFS, FIL, FRESULT, FR_OK, etc. */
#include <zephyr/logging/log.h>

LOG_MODULE_REGISTER(main);

static int lsdir(const char *path);

static FATFS fat_fs;
/* mounting info */
static struct fs_mount_t mp = {
    .type = FS_FATFS,
    .fs_data = &fat_fs,
};

struct device *gpio0dev;

/*
*  Note the fatfs library is able to mount only strings inside _VOLUME_STRS
*  in ffconf.h
*/
static const char *disk_mount_pt = "/SD:";

void main(void)
{
gpio0dev = DEVICE_DT_GET(DT_NODELABEL(gpio0));
if (!device_is_ready(gpio0dev)) {
    printk("GPIO0 not ready!\n");
}

    /* raw disk i/o */
    do {
        static const char *disk_pdrv = "SD";
        uint64_t memory_size_mb;
        uint32_t block_count;
        uint32_t block_size;

        if (disk_access_init(disk_pdrv) != 0) {
            LOG_ERR("Storage init ERROR!");
            break;
        }

        if (disk_access_ioctl(disk_pdrv,
                DISK_IOCTL_GET_SECTOR_COUNT, &block_count)) {
            LOG_ERR("Unable to get sector count");
            break;
        }
        LOG_INF("Block count %u", block_count);

        if (disk_access_ioctl(disk_pdrv,
                DISK_IOCTL_GET_SECTOR_SIZE, &block_size)) {
            LOG_ERR("Unable to get sector size");
            break;
        }
        printk("Sector size %u\n", block_size);

        memory_size_mb = (uint64_t)block_count * block_size;
        printk("Memory Size(MB) %u\n", (uint32_t)(memory_size_mb >> 20));
    } while (0);

    mp.mnt_point = disk_mount_pt;

    int res = fs_mount(&mp);

    if (res == FR_OK) {
        printk("Disk mounted.\n");
        lsdir(disk_mount_pt);
    } else {
        printk("Error mounting disk.\n");
    }

    while (1) {
        k_sleep(K_MSEC(1000));
    }
}

static int lsdir(const char *path)
{
    int res;
    struct fs_dir_t dirp;
    static struct fs_dirent entry;

    fs_dir_t_init(&dirp);

    /* Verify fs_opendir() */
    res = fs_opendir(&dirp, path);
    if (res) {
        printk("Error opening dir %s [%d]\n", path, res);
        return res;
    }

    printk("\nListing dir %s ...\n", path);
    for (;;) {
        /* Verify fs_readdir() */
        res = fs_readdir(&dirp, &entry);

        /* entry.name[0] == 0 means end-of-dir */
        if (res || entry.name[0] == 0) {
            break;
        }

        if (entry.type == FS_DIR_ENTRY_DIR) {
            printk("[DIR ] %s\n", entry.name);
        } else {
            printk("[FILE] %s (size = %zu)\n",
                entry.name, entry.size);
        }
    }

    /* Verify fs_closedir() */
    fs_closedir(&dirp);

    return res;
}

and it retursn me always this error : [00:00:00.430,124] <dbg> fs: fs_register: fs register 0: 0
*** Booting nRF Connect SDK v2.9.2-4ab7b98fc76f ***
*** Using Zephyr OS v3.7.99-aa34a5632971 ***
[00:00:00.430,166] <err> main: Storage init ERROR!
[00:00:00.430,182] <err> fs: fs mount error (-5)
Error mounting disk

thank you in advance!
Parents
  • Hello,

    The pins your are using are not routed to the pin headers by default, but directly to the on board SPI Flash (see https://docs.nordicsemi.com/bundle/ug_nrf54l15_dk/page/UG/nRF54L15_DK/hw_desription/external_memory.html). But you can change routing through the  nRF Connect for Desktop's Board Configurator application. Have you done that?

    Best regards,

    Vidar

  • Hello,

    Thank you for your answer!
    I am trying to disable external memory, but some errors appear :

  • Hello,
    I tried a new time this morning and it works one time but after it returns me the same error.

    Here is the log file : 

    2025-10-30T08:34:09.021Z DEBUG Rendering SidePanel
    2025-10-30T08:34:09.113Z INFO Initialising the bundled nrfutil device
    2025-10-30T08:34:09.152Z DEBUG Application data folder: C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\pc-nrfconnect-board-configurator
    2025-10-30T08:34:09.340Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-30T08:34:09.391Z DEBUG App pc-nrfconnect-board-configurator v0.5.0 (official)
    2025-10-30T08:34:09.391Z DEBUG App path: C:\Users\jade.mouillot\.nrfconnect-apps\node_modules\pc-nrfconnect-board-configurator
    2025-10-30T08:34:09.392Z DEBUG nRFConnect 5.2.0, required by the app is (>=5.2.0)
    2025-10-30T08:34:09.392Z DEBUG nRFConnect path: C:\Users\jade.mouillot\AppData\Local\Programs\nrfconnect\resources\app.asar
    2025-10-30T08:34:09.392Z DEBUG HomeDir: C:\Users\jade.mouillot
    2025-10-30T08:34:09.392Z DEBUG TmpDir: C:\Users\JADE~1.MOU\AppData\Local\Temp
    2025-10-30T08:34:09.459Z DEBUG Showing BoardController pane
    2025-10-30T08:34:09.487Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-30T08:34:09.487Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-30T08:34:09.500Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-30T08:34:09.607Z INFO Using the bundled core version for nrfutil device: 8.1.1
    2025-10-30T08:34:09.711Z INFO Using nrfutil-device version: 2.12.3
    2025-10-30T08:34:09.711Z INFO Using nrf-device-lib version: 0.17.81
    2025-10-30T08:34:09.712Z INFO Using nrf-probe version: 0.40.1
    2025-10-30T08:34:09.712Z INFO Using JLink version: JLink_V8.18
    2025-10-30T08:34:17.706Z INFO Getting serial port options from the persistent store for 001057762330.pc-nrfconnect-board-configurator
    2025-10-30T08:34:17.708Z INFO Device connected with the serial number 001057762330
    2025-10-30T08:34:17.710Z DEBUG Sending event "board-configurator: device connected"
    2025-10-30T08:34:20.278Z INFO Selecting device with the serial number 001057762330
    2025-10-30T08:34:20.280Z DEBUG Rendering SidePanel
    2025-10-30T08:34:20.281Z DEBUG Got device {"devkit":{"boardVersion":"PCA10156","deviceFamily":"NRF54L_FAMILY"},"id":5,"probe":{},"serialNumber":"001057762330","serialPorts":[{"comName":"COM7","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_00#6&423E80E&0&0000#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":0,"vendorId":"1366"},{"comName":"COM8","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_02#6&423E80E&0&0002#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":1,"vendorId":"1366"}],"traits":{"boardController":false,"broken":false,"devkit":true,"jlink":true,"mcuBoot":false,"modem":false,"nordicDfu":false,"nordicUsb":false,"seggerUsb":true,"serialPorts":true,"usb":true},"usb":{"device":{"address":4,"busNumber":2,"descriptor":{"bDescriptorType":1,"bcdDevice":256,"idProduct":4201,"idVendor":4966}},"manufacturer":"SEGGER","osDevicePath":"\\\\?\\USB#VID_1366&PID_1069#001057762330#{A5DCBF10-6530-11D2-901F-00C04FB951ED}","product":"J-Link","serialNumber":"001057762330"},"favorite":true,"nickname":""} undefined
    2025-10-30T08:34:20.282Z DEBUG Device with boardVersion: "PCA10156"
    2025-10-30T08:34:20.283Z DEBUG buildGui() for board definition pins: [{"type":"vcom","id":"vcom0","name":"VCOM0","enable":{"pin":42},"hwfc":{"pin":20}},{"type":"vcom","id":"vcom1","name":"VCOM1","enable":{"pin":22},"hwfc":{"pin":23}},{"type":"switch","id":"ledcontrol","title":"Power to LEDs","label":"Disable to have LEDs unpowered (and kept off).","tooltip":"Enabling this option provides LEDs from LED0 to LED3 with 3.3 V of power.","enable":{"pin":45}},{"type":"switch","id":"swd-control","title":"Software Debugger (SWD)","label":"Disable to use an external debugger on the target chip.","tooltip":"When enabled, the SWD is connected and the IMCU is acting as the debugger. When disabled, the SWD is disconnected and you can use an external debugger connected to the Debug In header.","enable":{"pin":6}},{"type":"switch","id":"swo-control","title":"SWO Control","label":"Connect or disconnect the SWO signal","tooltip":"When enabled, connects the SWO signal connection to the SWO P2.07 pin on nRF54L15. When disabled, the SWO signal is disconnected.","enable":{"pin":9,"invert":true}},{"type":"switch","id":"qspi-control","title":"External memory","label":"Enable external flash","tooltip":"When enabled, the QSPI pins (P2.00-P2.05) are connected to the external memory. When disabled, the QSPI pins are routed to the PORT2 header (P2).","enable":{"pin":47}}]
    2025-10-30T08:34:20.283Z INFO Rendering for nRF54L15 PDK (rev. 1.0.0)
    2025-10-30T08:34:20.284Z DEBUG Got device {"devkit":{"boardVersion":"PCA10156","deviceFamily":"NRF54L_FAMILY"},"id":5,"probe":{},"serialNumber":"001057762330","serialPorts":[{"comName":"COM7","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_00#6&423E80E&0&0000#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":0,"vendorId":"1366"},{"comName":"COM8","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_02#6&423E80E&0&0002#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":1,"vendorId":"1366"}],"traits":{"boardController":false,"broken":false,"devkit":true,"jlink":true,"mcuBoot":false,"modem":false,"nordicDfu":false,"nordicUsb":false,"seggerUsb":true,"serialPorts":true,"usb":true},"usb":{"device":{"address":4,"busNumber":2,"descriptor":{"bDescriptorType":1,"bcdDevice":256,"idProduct":4201,"idVendor":4966}},"manufacturer":"SEGGER","osDevicePath":"\\\\?\\USB#VID_1366&PID_1069#001057762330#{A5DCBF10-6530-11D2-901F-00C04FB951ED}","product":"J-Link","serialNumber":"001057762330"},"favorite":true,"nickname":""} undefined
    2025-10-30T08:34:20.284Z DEBUG Device with boardVersion: "PCA10156"
    2025-10-30T08:34:20.284Z DEBUG buildGui() for board definition pins: [{"type":"vcom","id":"vcom0","name":"VCOM0","enable":{"pin":42},"hwfc":{"pin":20}},{"type":"vcom","id":"vcom1","name":"VCOM1","enable":{"pin":22},"hwfc":{"pin":23}},{"type":"switch","id":"ledcontrol","title":"Power to LEDs","label":"Disable to have LEDs unpowered (and kept off).","tooltip":"Enabling this option provides LEDs from LED0 to LED3 with 3.3 V of power.","enable":{"pin":45}},{"type":"switch","id":"swd-control","title":"Software Debugger (SWD)","label":"Disable to use an external debugger on the target chip.","tooltip":"When enabled, the SWD is connected and the IMCU is acting as the debugger. When disabled, the SWD is disconnected and you can use an external debugger connected to the Debug In header.","enable":{"pin":6}},{"type":"switch","id":"swo-control","title":"SWO Control","label":"Connect or disconnect the SWO signal","tooltip":"When enabled, connects the SWO signal connection to the SWO P2.07 pin on nRF54L15. When disabled, the SWO signal is disconnected.","enable":{"pin":9,"invert":true}},{"type":"switch","id":"qspi-control","title":"External memory","label":"Enable external flash","tooltip":"When enabled, the QSPI pins (P2.00-P2.05) are connected to the external memory. When disabled, the QSPI pins are routed to the PORT2 header (P2).","enable":{"pin":47}}]
    2025-10-30T08:34:20.284Z INFO Rendering for nRF54L15 PDK (rev. 1.0.0)
    2025-10-30T08:34:20.285Z DEBUG Rendering VCOMConfiguration for VCOM0
    2025-10-30T08:34:20.287Z DEBUG Rendering VCOMConfiguration for VCOM1
    2025-10-30T08:34:20.295Z DEBUG Rendering SidePanel
    2025-10-30T08:34:20.323Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-30T08:34:21.856Z DEBUG Rendering SidePanel
    2025-10-30T08:34:23.370Z DEBUG Rendering SidePanel
    2025-10-30T08:34:34.752Z INFO Selected device with the serial number 001057762330
    2025-10-30T08:34:34.761Z DEBUG Sending event "board-configurator: device selected"
    2025-10-30T08:34:34.761Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-30T08:34:44.879Z DEBUG Rendering SidePanel
    2025-10-30T08:34:44.892Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-30T08:34:49.775Z ERROR Error: Failed with exit code 1.
    One or more batch tasks failed:
    * 1057762330: The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized (NotFound)


    Message: Batch task smp failed, The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized.
    2025-10-30T08:34:59.762Z ERROR Error: Failed with exit code 1.
    One or more batch tasks failed:
    * 1057762330: The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized (NotFound)


    Message: Batch task smp failed, The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized.

    I tried to change the VDD the 3.3V also to make work the SD Module.

  • I try to reconnect me to BoardConfigurator and the good parameters were put.

    But I have always this error on the terminal.

    [00:00:00.429,109] <dbg> fs: fs_register: fs register 0: 0
    *** Booting nRF Connect SDK v2.9.2-4ab7b98fc76f ***
    *** Using Zephyr OS v3.7.99-aa34a5632971 ***
    [00:00:00.429,150] <err> main: Storage init ERROR!
    [00:00:00.429,166] <err> fs: fs mount error (-5)
    Error mounting disk.

  • Do you also see this error if you are in an active debug session? This will have the same effect as using constant latency mode which is required (see Cross power-domain use).

    Regading the board configurator issue, one of the developers who is looking into the issue requested more verbose logging, so if you experience the issue again, please enable verbose logging.

  • I tried to launch my program in Debug mode, this is what I have :

    I think the same errors appears

  • Hello,
    I think I resolved my problem with this ticket : SD Card: Error mounting file System error: -134.
    I have the same RTT output.
    Thank you for the support!!

Reply Children
  • Unfortunatly, I have always the problem on Board Configurator:
    Here is the logs with verbose logging :

    2025-10-31T14:16:30.547Z DEBUG Rendering SidePanel
    2025-10-31T14:16:30.623Z INFO Initialising the bundled nrfutil device
    2025-10-31T14:16:30.643Z DEBUG Application data folder: C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\pc-nrfconnect-board-configurator
    2025-10-31T14:16:30.805Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-31T14:16:30.852Z DEBUG App pc-nrfconnect-board-configurator v0.5.0 (official)
    2025-10-31T14:16:30.852Z DEBUG App path: C:\Users\jade.mouillot\.nrfconnect-apps\node_modules\pc-nrfconnect-board-configurator
    2025-10-31T14:16:30.853Z DEBUG nRFConnect 5.2.0, required by the app is (>=5.2.0)
    2025-10-31T14:16:30.853Z DEBUG nRFConnect path: C:\Users\jade.mouillot\AppData\Local\Programs\nrfconnect\resources\app.asar
    2025-10-31T14:16:30.853Z DEBUG HomeDir: C:\Users\jade.mouillot
    2025-10-31T14:16:30.853Z DEBUG TmpDir: C:\Users\JADE~1.MOU\AppData\Local\Temp
    2025-10-31T14:16:30.901Z DEBUG Showing BoardController pane
    2025-10-31T14:16:30.947Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-31T14:16:30.949Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-31T14:16:30.963Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-31T14:16:31.064Z INFO Using the bundled core version for nrfutil device: 8.1.1
    2025-10-31T14:16:31.102Z INFO [PID:9392] nrfutil-device (version = 2.12.3, platform = x86_64-pc-windows-msvc, classification = nrf-external) invoked with list --traits nordicUsb,serialPorts,jlink --hotplug --json --log-output=stdout --log-level trace
    2025-10-31T14:16:31.102Z DEBUG [PID:9392] cargo = false, force_libnrfdl_lookup = false, force_nrfutil_libdir = false
    2025-10-31T14:16:31.103Z DEBUG [PID:9392] Creating the nrfdl context via nrfdl_create_context_with_config: Plugin location is assumed to be C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device
    2025-10-31T14:16:31.103Z DEBUG [PID:9392] Loading plugins from directory C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device
    2025-10-31T14:16:31.103Z VERBOSE [PID:9392] C API function: supported_traits
    2025-10-31T14:16:31.113Z VERBOSE [PID:9392] [2025-10-31 14:16:31.111385Z] J-Link installation directory configured in registry: Computer\HKEY_CURRENT_USER\SOFTWARE\SEGGER\J-Link="C:\\Program Files\\SEGGER\\JLink_V818"
    2025-10-31T14:16:31.119Z INFO [PID:9392] [2025-10-31 14:16:31.119923Z] Opened J-Link DLL at C:\Program Files\SEGGER\JLink_V818\JLink_x64.dll with version 8.18
    2025-10-31T14:16:31.119Z VERBOSE [PID:9392] C API function: get_version_list
    2025-10-31T14:16:31.119Z DEBUG [PID:9392] Operation get_version_list failed with error code NRFDL_ERR_NOT_SUPPORTED
    2025-10-31T14:16:31.120Z DEBUG [PID:9392] Plugin BOARDCONTROLLER does not support `get_version_list`
    2025-10-31T14:16:31.120Z DEBUG [PID:9392] Plugin sdfu does not support `get_version_list`
    2025-10-31T14:16:31.120Z DEBUG [PID:9392] Plugin mcuBoot does not support `get_version_list`
    2025-10-31T14:16:31.120Z DEBUG [PID:9392] enumerate_devices
    2025-10-31T14:16:31.120Z DEBUG [PID:9392] Probing device "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:16:31.121Z DEBUG [PID:9392] Probing device "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:16:31.121Z DEBUG [PID:9392] Probing device "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:16:31.130Z INFO Using nrfutil-device version: 2.12.3
    2025-10-31T14:16:31.131Z INFO Using nrf-device-lib version: 0.17.81
    2025-10-31T14:16:31.131Z INFO Using nrf-probe version: 0.40.1
    2025-10-31T14:16:31.131Z INFO Using JLink version: JLink_V8.18
    2025-10-31T14:16:31.458Z DEBUG [PID:9392] Probing device "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:16:31.459Z DEBUG [PID:9392] Probing device "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:31.462Z DEBUG [PID:9392] Probing device "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:16:31.463Z DEBUG [PID:9392] Probing device "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:16:31.464Z DEBUG [PID:9392] Probing device "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:16:31.465Z DEBUG [PID:9392] Probing device "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:16:31.466Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 19, port_chain: [3, 3], vendor_id: 0x05E3, product_id: 0x0754, device_version: 0x1621, usb_version: 0x0320, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB Storage"), serial_number: Some("000000001621"), instance_id: "USB\\VID_05E3&PID_0754\\000000001621", parent_instance_id: "USB\\VID_05E3&PID_0616\\8&37af76c1&0&3", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)#USB(3)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)#USB(3)"], port_number: 3, driver: Some("USBSTOR"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x08, subclass: 0x06, protocol: 0x50, interface_string: None }] }
    2025-10-31T14:16:31.466Z DEBUG [PID:9392] Creating device for "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:16:31.469Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 4, port_chain: [8], vendor_id: 0x138A, product_id: 0x00AB, device_version: 0x0164, usb_version: 0x0200, class: 0xFF, subclass: 0x10, protocol: 0xFF, max_packet_size_0: 8, speed: Some(Full), manufacturer_string: None, product_string: None, serial_number: Some("c7aab486d46a"), instance_id: "USB\\VID_138A&PID_00AB\\C7AAB486D46A", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(8)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS08)"], port_number: 8, driver: Some("WUDFRd"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xFF, subclass: 0x00, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:16:31.469Z DEBUG [PID:9392] Creating device for "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:16:31.469Z DEBUG [PID:9392] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:31.469Z DEBUG [PID:9392] Failed to fetch supported languages
    2025-10-31T14:16:31.469Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 21, port_chain: [5, 1], vendor_id: 0x1B1C, product_id: 0x1B75, device_version: 0x0311, usb_version: 0x0200, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse"), serial_number: Some("0C01100AAF860CC360027935F5001C01\0\0\0\0\0\0\0\0\0\0\0\0"), instance_id: "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01", parent_instance_id: "USB\\VID_05E3&PID_0610\\5&1c80a72c&0&5", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(5)#USB(1)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS05)#USB(1)"], port_number: 1, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x03, subclass: 0x01, protocol: 0x02, interface_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse") }, InterfaceInfo { interface_number: 1, class: 0x03, subclass: 0x00, protocol: 0x00, interface_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse") }] }
    2025-10-31T14:16:31.469Z DEBUG [PID:9392] Creating device for "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:16:36.471Z DEBUG [PID:9392] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=995
    2025-10-31T14:16:36.471Z DEBUG [PID:9392] Failed to fetch supported languages
    2025-10-31T14:16:36.471Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 18, port_chain: [3, 4], vendor_id: 0x0BDA, product_id: 0x8153, device_version: 0x3000, usb_version: 0x0300, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB 10/100/1000 LAN"), serial_number: Some("000001"), instance_id: "USB\\VID_0BDA&PID_8153\\000001", parent_instance_id: "USB\\VID_05E3&PID_0616\\8&37af76c1&0&3", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)#USB(4)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)#USB(4)"], port_number: 4, driver: Some("rtux64w10"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xFF, subclass: 0xFF, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:16:36.471Z DEBUG [PID:9392] Creating device for "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:16:36.472Z DEBUG [PID:9392] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=2 index=1 error=31
    2025-10-31T14:16:36.472Z ERROR [PID:9392] Failed to read config descriptor 1: Descriptor request failed. Device might be suspended.
    2025-10-31T14:16:36.472Z DEBUG [PID:9392] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:36.472Z DEBUG [PID:9392] Failed to fetch supported languages
    2025-10-31T14:16:36.472Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 27, port_chain: [2], vendor_id: 0x1366, product_id: 0x1069, device_version: 0x0100, usb_version: 0x0200, class: 0xEF, subclass: 0x02, protocol: 0x01, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: Some("J-Link"), serial_number: Some("001057762330"), instance_id: "USB\\VID_1366&PID_1069\\001057762330", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(2)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS02)"], port_number: 2, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x02, subclass: 0x02, protocol: 0x00, interface_string: Some("CDC") }, InterfaceInfo { interface_number: 2, class: 0x02, subclass: 0x02, protocol: 0x00, interface_string: Some("CDC") }, InterfaceInfo { interface_number: 4, class: 0xFF, subclass: 0xFF, protocol: 0xFF, interface_string: Some("BULK interface") }, InterfaceInfo { interface_number: 5, class: 0x08, subclass: 0x06, protocol: 0x50, interface_string: Some("MSD interface") }, InterfaceInfo { interface_number: 6, class: 0x03, subclass: 0x00, protocol: 0x00, interface_string: Some("HID interface") }] }
    2025-10-31T14:16:36.472Z DEBUG [PID:9392] Creating device for "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:36.473Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 3, port_chain: [7], vendor_id: 0x8087, product_id: 0x0A2B, device_version: 0x0010, usb_version: 0x0200, class: 0xE0, subclass: 0x01, protocol: 0x01, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: None, serial_number: None, instance_id: "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(7)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS07)"], port_number: 7, driver: Some("BTHUSB"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xE0, subclass: 0x01, protocol: 0x01, interface_string: None }, InterfaceInfo { interface_number: 1, class: 0xE0, subclass: 0x01, protocol: 0x01, interface_string: None }] }
    2025-10-31T14:16:36.473Z DEBUG [PID:9392] Creating device for "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:16:36.473Z DEBUG [PID:9392] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:36.473Z DEBUG [PID:9392] Failed to fetch supported languages
    2025-10-31T14:16:36.473Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 2, port_chain: [9], vendor_id: 0x0408, product_id: 0x5411, device_version: 0x0001, usb_version: 0x0201, class: 0xEF, subclass: 0x02, protocol: 0x01, max_packet_size_0: 64, speed: Some(High), manufacturer_string: None, product_string: Some("HP HD Camera"), serial_number: Some("0001"), instance_id: "USB\\VID_0408&PID_5411\\0001", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(9)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS09)"], port_number: 9, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x0E, subclass: 0x03, protocol: 0x00, interface_string: Some("HP HD Camera") }, InterfaceInfo { interface_number: 2, class: 0x0E, subclass: 0x03, protocol: 0x00, interface_string: Some("HP IR Camera") }] }
    2025-10-31T14:16:36.474Z DEBUG [PID:9392] Creating device for "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:16:36.474Z DEBUG [PID:9392] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:36.474Z DEBUG [PID:9392] Failed to fetch supported languages
    2025-10-31T14:16:36.474Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 16, port_chain: [3], vendor_id: 0x05E3, product_id: 0x0616, device_version: 0x0402, usb_version: 0x0300, class: 0x09, subclass: 0x00, protocol: 0x03, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB3.0 Hub"), serial_number: None, instance_id: "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3", parent_instance_id: "USB\\ROOT_HUB30\\7&186f03a3&0&0", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)"], port_number: 3, driver: Some("USBHUB3"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x09, subclass: 0x00, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:16:36.474Z DEBUG [PID:9392] Creating device for "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:16:36.476Z DEBUG [PID:9392] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 20, port_chain: [5], vendor_id: 0x05E3, product_id: 0x0610, device_version: 0x0402, usb_version: 0x0210, class: 0x09, subclass: 0x00, protocol: 0x02, max_packet_size_0: 64, speed: Some(High), manufacturer_string: None, product_string: Some("USB2.0 Hub"), serial_number: None, instance_id: "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(5)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS05)"], port_number: 5, driver: Some("USBHUB3"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x09, subclass: 0x00, protocol: 0x01, interface_string: None }] }
    2025-10-31T14:16:36.476Z DEBUG [PID:9392] Creating device for "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:16:36.480Z DEBUG [PID:9392] create port for device: USB\VID_1366&PID_1069&MI_00\6&423E80E&0&0000 parent: "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:36.481Z DEBUG [PID:9392] create port for device: USB\VID_1366&PID_1069&MI_02\6&423E80E&0&0002 parent: "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:36.491Z DEBUG [PID:9392] enumerate: Device with sn 001057762330 has board version PCA10156
    2025-10-31T14:16:36.494Z DEBUG [PID:9392] enumerate plugin: Probe
    2025-10-31T14:16:36.495Z VERBOSE [PID:9392] [2025-10-31 14:16:36.495720Z] J-Link installation directory configured in registry: Computer\HKEY_CURRENT_USER\SOFTWARE\SEGGER\J-Link="C:\\Program Files\\SEGGER\\JLink_V818"
    2025-10-31T14:16:36.495Z INFO [PID:9392] [2025-10-31 14:16:36.495977Z] Opened J-Link DLL at C:\Program Files\SEGGER\JLink_V818\JLink_x64.dll with version 8.18
    2025-10-31T14:16:36.497Z INFO [PID:9392] [2025-10-31 14:16:36.497715Z] Found 1 attached J-Link devices
    2025-10-31T14:16:36.497Z DEBUG [PID:9392] enumerate plugin done in: 3ms
    2025-10-31T14:16:36.497Z DEBUG [PID:9392] enumerate plugin: BOARDCONTROLLER
    2025-10-31T14:16:36.497Z VERBOSE [PID:9392] C API function: enumerate
    2025-10-31T14:16:39.498Z WARN [PID:9392] execute_fn timed out
    2025-10-31T14:16:39.499Z DEBUG [PID:9392] Operation enumerate failed with error code NRFDL_ERR_TIMEOUT
    2025-10-31T14:16:39.499Z ERROR [PID:9392] Failed to enumerate plugin BOARDCONTROLLER: 12
    2025-10-31T14:16:39.499Z DEBUG [PID:9392] enumerate plugin done in: 3001ms
    2025-10-31T14:16:39.499Z DEBUG [PID:9392] enumerate plugin: sdfu
    2025-10-31T14:16:39.499Z DEBUG [PID:9392] enumerate plugin done in: 0ms
    2025-10-31T14:16:39.499Z DEBUG [PID:9392] enumerate plugin: mcuBoot
    2025-10-31T14:16:39.501Z DEBUG [PID:9392] enumerate plugin done in: 1ms
    2025-10-31T14:16:39.504Z INFO Getting serial port options from the persistent store for 001057762330.pc-nrfconnect-board-configurator
    2025-10-31T14:16:39.506Z INFO Device connected with the serial number 001057762330
    2025-10-31T14:16:39.509Z DEBUG Sending event "board-configurator: device connected"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:16:39.528Z DEBUG [PID:9392] Probing device "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:16:42.725Z INFO Selecting device with the serial number 001057762330
    2025-10-31T14:16:42.730Z DEBUG Rendering SidePanel
    2025-10-31T14:16:42.732Z DEBUG Got device {"devkit":{"boardVersion":"PCA10156","deviceFamily":"NRF54L_FAMILY"},"id":5,"probe":{},"serialNumber":"001057762330","serialPorts":[{"comName":"COM7","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_00#6&423E80E&0&0000#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":0,"vendorId":"1366"},{"comName":"COM8","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_02#6&423E80E&0&0002#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":1,"vendorId":"1366"}],"traits":{"boardController":false,"broken":false,"devkit":true,"jlink":true,"mcuBoot":false,"modem":false,"nordicDfu":false,"nordicUsb":false,"seggerUsb":true,"serialPorts":true,"usb":true},"usb":{"device":{"address":27,"busNumber":2,"descriptor":{"bDescriptorType":1,"bcdDevice":256,"idProduct":4201,"idVendor":4966}},"manufacturer":"SEGGER","osDevicePath":"\\\\?\\USB#VID_1366&PID_1069#001057762330#{A5DCBF10-6530-11D2-901F-00C04FB951ED}","product":"J-Link","serialNumber":"001057762330"},"favorite":true,"nickname":""} undefined
    2025-10-31T14:16:42.732Z DEBUG Device with boardVersion: "PCA10156"
    2025-10-31T14:16:42.733Z DEBUG buildGui() for board definition pins: [{"type":"vcom","id":"vcom0","name":"VCOM0","enable":{"pin":42},"hwfc":{"pin":20}},{"type":"vcom","id":"vcom1","name":"VCOM1","enable":{"pin":22},"hwfc":{"pin":23}},{"type":"switch","id":"ledcontrol","title":"Power to LEDs","label":"Disable to have LEDs unpowered (and kept off).","tooltip":"Enabling this option provides LEDs from LED0 to LED3 with 3.3 V of power.","enable":{"pin":45}},{"type":"switch","id":"swd-control","title":"Software Debugger (SWD)","label":"Disable to use an external debugger on the target chip.","tooltip":"When enabled, the SWD is connected and the IMCU is acting as the debugger. When disabled, the SWD is disconnected and you can use an external debugger connected to the Debug In header.","enable":{"pin":6}},{"type":"switch","id":"swo-control","title":"SWO Control","label":"Connect or disconnect the SWO signal","tooltip":"When enabled, connects the SWO signal connection to the SWO P2.07 pin on nRF54L15. When disabled, the SWO signal is disconnected.","enable":{"pin":9,"invert":true}},{"type":"switch","id":"qspi-control","title":"External memory","label":"Enable external flash","tooltip":"When enabled, the QSPI pins (P2.00-P2.05) are connected to the external memory. When disabled, the QSPI pins are routed to the PORT2 header (P2).","enable":{"pin":47}}]
    2025-10-31T14:16:42.733Z INFO Rendering for nRF54L15 PDK (rev. 1.0.0)
    2025-10-31T14:16:42.733Z DEBUG Got device {"devkit":{"boardVersion":"PCA10156","deviceFamily":"NRF54L_FAMILY"},"id":5,"probe":{},"serialNumber":"001057762330","serialPorts":[{"comName":"COM7","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_00#6&423E80E&0&0000#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":0,"vendorId":"1366"},{"comName":"COM8","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_02#6&423E80E&0&0002#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":1,"vendorId":"1366"}],"traits":{"boardController":false,"broken":false,"devkit":true,"jlink":true,"mcuBoot":false,"modem":false,"nordicDfu":false,"nordicUsb":false,"seggerUsb":true,"serialPorts":true,"usb":true},"usb":{"device":{"address":27,"busNumber":2,"descriptor":{"bDescriptorType":1,"bcdDevice":256,"idProduct":4201,"idVendor":4966}},"manufacturer":"SEGGER","osDevicePath":"\\\\?\\USB#VID_1366&PID_1069#001057762330#{A5DCBF10-6530-11D2-901F-00C04FB951ED}","product":"J-Link","serialNumber":"001057762330"},"favorite":true,"nickname":""} undefined
    2025-10-31T14:16:42.733Z DEBUG Device with boardVersion: "PCA10156"
    2025-10-31T14:16:42.734Z DEBUG buildGui() for board definition pins: [{"type":"vcom","id":"vcom0","name":"VCOM0","enable":{"pin":42},"hwfc":{"pin":20}},{"type":"vcom","id":"vcom1","name":"VCOM1","enable":{"pin":22},"hwfc":{"pin":23}},{"type":"switch","id":"ledcontrol","title":"Power to LEDs","label":"Disable to have LEDs unpowered (and kept off).","tooltip":"Enabling this option provides LEDs from LED0 to LED3 with 3.3 V of power.","enable":{"pin":45}},{"type":"switch","id":"swd-control","title":"Software Debugger (SWD)","label":"Disable to use an external debugger on the target chip.","tooltip":"When enabled, the SWD is connected and the IMCU is acting as the debugger. When disabled, the SWD is disconnected and you can use an external debugger connected to the Debug In header.","enable":{"pin":6}},{"type":"switch","id":"swo-control","title":"SWO Control","label":"Connect or disconnect the SWO signal","tooltip":"When enabled, connects the SWO signal connection to the SWO P2.07 pin on nRF54L15. When disabled, the SWO signal is disconnected.","enable":{"pin":9,"invert":true}},{"type":"switch","id":"qspi-control","title":"External memory","label":"Enable external flash","tooltip":"When enabled, the QSPI pins (P2.00-P2.05) are connected to the external memory. When disabled, the QSPI pins are routed to the PORT2 header (P2).","enable":{"pin":47}}]
    2025-10-31T14:16:42.735Z INFO Rendering for nRF54L15 PDK (rev. 1.0.0)
    2025-10-31T14:16:42.736Z DEBUG Rendering VCOMConfiguration for VCOM0
    2025-10-31T14:16:42.741Z DEBUG Rendering VCOMConfiguration for VCOM1
    2025-10-31T14:16:42.751Z DEBUG Rendering SidePanel
    2025-10-31T14:16:42.784Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-31T14:16:42.887Z INFO [PID:14724] nrfutil-device (version = 2.12.3, platform = x86_64-pc-windows-msvc, classification = nrf-external) invoked with device-info --serial-number 001057762330 --json --log-output=stdout --log-level trace
    2025-10-31T14:16:42.888Z DEBUG [PID:14724] cargo = false, force_libnrfdl_lookup = false, force_nrfutil_libdir = false
    2025-10-31T14:16:42.889Z DEBUG [PID:14724] Creating the nrfdl context via nrfdl_create_context_with_config: Plugin location is assumed to be C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device
    2025-10-31T14:16:42.889Z DEBUG [PID:14724] Loading plugins from directory C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device
    2025-10-31T14:16:42.893Z VERBOSE [PID:14724] C API function: supported_traits
    2025-10-31T14:16:42.899Z VERBOSE [PID:14724] [2025-10-31 14:16:42.899481Z] J-Link installation directory configured in registry: Computer\HKEY_CURRENT_USER\SOFTWARE\SEGGER\J-Link="C:\\Program Files\\SEGGER\\JLink_V818"
    2025-10-31T14:16:42.902Z INFO [PID:14724] [2025-10-31 14:16:42.902614Z] Opened J-Link DLL at C:\Program Files\SEGGER\JLink_V818\JLink_x64.dll with version 8.18
    2025-10-31T14:16:42.902Z VERBOSE [PID:14724] C API function: get_version_list
    2025-10-31T14:16:42.902Z DEBUG [PID:14724] Operation get_version_list failed with error code NRFDL_ERR_NOT_SUPPORTED
    2025-10-31T14:16:42.902Z DEBUG [PID:14724] Plugin BOARDCONTROLLER does not support `get_version_list`
    2025-10-31T14:16:42.903Z DEBUG [PID:14724] Plugin sdfu does not support `get_version_list`
    2025-10-31T14:16:42.903Z DEBUG [PID:14724] Plugin mcuBoot does not support `get_version_list`
    2025-10-31T14:16:42.903Z DEBUG [PID:14724] operation to get devices for : Ok("{\"operations\":[{\"operation\":{\"type\":\"device-info\"},\"core\":\"NRFDL_DEVICE_CORE_APPLICATION\"}]}")
    2025-10-31T14:16:42.903Z VERBOSE [PID:14724] Operations required by a device to do: {"device-info"}
    2025-10-31T14:16:42.903Z DEBUG [PID:14724] enumerate_devices
    2025-10-31T14:16:42.903Z DEBUG [PID:14724] Probing device "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:16:42.904Z DEBUG [PID:14724] Probing device "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:16:42.905Z DEBUG [PID:14724] Probing device "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:16:42.906Z DEBUG [PID:14724] Probing device "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:16:42.906Z DEBUG [PID:14724] Probing device "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:42.907Z DEBUG [PID:14724] Probing device "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:16:42.908Z DEBUG [PID:14724] Probing device "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:16:42.909Z DEBUG [PID:14724] Probing device "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:16:42.909Z DEBUG [PID:14724] Probing device "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:16:42.910Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 19, port_chain: [3, 3], vendor_id: 0x05E3, product_id: 0x0754, device_version: 0x1621, usb_version: 0x0320, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB Storage"), serial_number: Some("000000001621"), instance_id: "USB\\VID_05E3&PID_0754\\000000001621", parent_instance_id: "USB\\VID_05E3&PID_0616\\8&37af76c1&0&3", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)#USB(3)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)#USB(3)"], port_number: 3, driver: Some("USBSTOR"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x08, subclass: 0x06, protocol: 0x50, interface_string: None }] }
    2025-10-31T14:16:42.910Z DEBUG [PID:14724] Creating device for "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:16:42.912Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 4, port_chain: [8], vendor_id: 0x138A, product_id: 0x00AB, device_version: 0x0164, usb_version: 0x0200, class: 0xFF, subclass: 0x10, protocol: 0xFF, max_packet_size_0: 8, speed: Some(Full), manufacturer_string: None, product_string: None, serial_number: Some("c7aab486d46a"), instance_id: "USB\\VID_138A&PID_00AB\\C7AAB486D46A", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(8)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS08)"], port_number: 8, driver: Some("WUDFRd"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xFF, subclass: 0x00, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:16:42.913Z DEBUG [PID:14724] Creating device for "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:16:42.913Z DEBUG [PID:14724] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:42.913Z DEBUG [PID:14724] Failed to fetch supported languages
    2025-10-31T14:16:42.913Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 21, port_chain: [5, 1], vendor_id: 0x1B1C, product_id: 0x1B75, device_version: 0x0311, usb_version: 0x0200, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse"), serial_number: Some("0C01100AAF860CC360027935F5001C01\0\0\0\0\0\0\0\0\0\0\0\0"), instance_id: "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01", parent_instance_id: "USB\\VID_05E3&PID_0610\\5&1c80a72c&0&5", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(5)#USB(1)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS05)#USB(1)"], port_number: 1, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x03, subclass: 0x01, protocol: 0x02, interface_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse") }, InterfaceInfo { interface_number: 1, class: 0x03, subclass: 0x00, protocol: 0x00, interface_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse") }] }
    2025-10-31T14:16:42.913Z DEBUG [PID:14724] Creating device for "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:16:47.496Z DEBUG Rendering SidePanel
    2025-10-31T14:16:48.512Z DEBUG Rendering SidePanel
    2025-10-31T14:16:48.523Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-31T14:16:48.596Z INFO [PID:14456] nrfutil-device (version = 2.12.3, platform = x86_64-pc-windows-msvc, classification = nrf-external) invoked with x-execute-batch --batch-json {"operations":[{"operation":{"type":"smp","operation":2,"group_id":64,"command_id":0,"sequence_number":0,"data":[[6,true,9,false,20,false,22,true,23,false,42,true,45,true,47,true],[1,3300]]},"operationId":"1"}]} --serial-number 001057762330 --json --log-output=stdout --log-level trace
    2025-10-31T14:16:48.596Z DEBUG [PID:14456] cargo = false, force_libnrfdl_lookup = false, force_nrfutil_libdir = false
    2025-10-31T14:16:48.596Z DEBUG [PID:14456] Creating the nrfdl context via nrfdl_create_context_with_config: Plugin location is assumed to be C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device
    2025-10-31T14:16:48.596Z DEBUG [PID:14456] Loading plugins from directory C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device
    2025-10-31T14:16:48.597Z VERBOSE [PID:14456] C API function: supported_traits
    2025-10-31T14:16:48.603Z VERBOSE [PID:14456] [2025-10-31 14:16:48.603843Z] J-Link installation directory configured in registry: Computer\HKEY_CURRENT_USER\SOFTWARE\SEGGER\J-Link="C:\\Program Files\\SEGGER\\JLink_V818"
    2025-10-31T14:16:48.606Z INFO [PID:14456] [2025-10-31 14:16:48.606777Z] Opened J-Link DLL at C:\Program Files\SEGGER\JLink_V818\JLink_x64.dll with version 8.18
    2025-10-31T14:16:48.606Z VERBOSE [PID:14456] C API function: get_version_list
    2025-10-31T14:16:48.606Z DEBUG [PID:14456] Operation get_version_list failed with error code NRFDL_ERR_NOT_SUPPORTED
    2025-10-31T14:16:48.606Z DEBUG [PID:14456] Plugin BOARDCONTROLLER does not support `get_version_list`
    2025-10-31T14:16:48.607Z DEBUG [PID:14456] Plugin sdfu does not support `get_version_list`
    2025-10-31T14:16:48.607Z DEBUG [PID:14456] Plugin mcuBoot does not support `get_version_list`
    2025-10-31T14:16:48.607Z DEBUG [PID:14456] enumerate_devices
    2025-10-31T14:16:48.607Z DEBUG [PID:14456] Probing device "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:16:48.607Z DEBUG [PID:14456] Probing device "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:16:48.608Z DEBUG [PID:14456] Probing device "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:16:51.515Z DEBUG [PID:14724] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=995
    2025-10-31T14:16:51.515Z DEBUG [PID:14724] Failed to fetch supported languages
    2025-10-31T14:16:51.515Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 18, port_chain: [3, 4], vendor_id: 0x0BDA, product_id: 0x8153, device_version: 0x3000, usb_version: 0x0300, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB 10/100/1000 LAN"), serial_number: Some("000001"), instance_id: "USB\\VID_0BDA&PID_8153\\000001", parent_instance_id: "USB\\VID_05E3&PID_0616\\8&37af76c1&0&3", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)#USB(4)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)#USB(4)"], port_number: 4, driver: Some("rtux64w10"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xFF, subclass: 0xFF, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:16:51.515Z DEBUG [PID:14724] Creating device for "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:16:51.515Z DEBUG [PID:14456] Probing device "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:16:51.515Z DEBUG [PID:14724] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=2 index=1 error=31
    2025-10-31T14:16:51.515Z ERROR [PID:14724] Failed to read config descriptor 1: Descriptor request failed. Device might be suspended.
    2025-10-31T14:16:51.515Z DEBUG [PID:14724] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:51.515Z DEBUG [PID:14724] Failed to fetch supported languages
    2025-10-31T14:16:51.515Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 27, port_chain: [2], vendor_id: 0x1366, product_id: 0x1069, device_version: 0x0100, usb_version: 0x0200, class: 0xEF, subclass: 0x02, protocol: 0x01, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: Some("J-Link"), serial_number: Some("001057762330"), instance_id: "USB\\VID_1366&PID_1069\\001057762330", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(2)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS02)"], port_number: 2, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x02, subclass: 0x02, protocol: 0x00, interface_string: Some("CDC") }, InterfaceInfo { interface_number: 2, class: 0x02, subclass: 0x02, protocol: 0x00, interface_string: Some("CDC") }, InterfaceInfo { interface_number: 4, class: 0xFF, subclass: 0xFF, protocol: 0xFF, interface_string: Some("BULK interface") }, InterfaceInfo { interface_number: 5, class: 0x08, subclass: 0x06, protocol: 0x50, interface_string: Some("MSD interface") }, InterfaceInfo { interface_number: 6, class: 0x03, subclass: 0x00, protocol: 0x00, interface_string: Some("HID interface") }] }
    2025-10-31T14:16:51.516Z DEBUG [PID:14724] Creating device for "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:51.516Z DEBUG [PID:14456] Probing device "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:51.516Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 3, port_chain: [7], vendor_id: 0x8087, product_id: 0x0A2B, device_version: 0x0010, usb_version: 0x0200, class: 0xE0, subclass: 0x01, protocol: 0x01, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: None, serial_number: None, instance_id: "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(7)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS07)"], port_number: 7, driver: Some("BTHUSB"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xE0, subclass: 0x01, protocol: 0x01, interface_string: None }, InterfaceInfo { interface_number: 1, class: 0xE0, subclass: 0x01, protocol: 0x01, interface_string: None }] }
    2025-10-31T14:16:51.516Z DEBUG [PID:14724] Creating device for "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:16:51.516Z DEBUG [PID:14456] Probing device "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:16:51.517Z DEBUG [PID:14456] Probing device "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:16:51.517Z DEBUG [PID:14724] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:51.517Z DEBUG [PID:14724] Failed to fetch supported languages
    2025-10-31T14:16:51.517Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 2, port_chain: [9], vendor_id: 0x0408, product_id: 0x5411, device_version: 0x0001, usb_version: 0x0201, class: 0xEF, subclass: 0x02, protocol: 0x01, max_packet_size_0: 64, speed: Some(High), manufacturer_string: None, product_string: Some("HP HD Camera"), serial_number: Some("0001"), instance_id: "USB\\VID_0408&PID_5411\\0001", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(9)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS09)"], port_number: 9, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x0E, subclass: 0x03, protocol: 0x00, interface_string: Some("HP HD Camera") }, InterfaceInfo { interface_number: 2, class: 0x0E, subclass: 0x03, protocol: 0x00, interface_string: Some("HP IR Camera") }] }
    2025-10-31T14:16:51.517Z DEBUG [PID:14724] Creating device for "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:16:51.517Z DEBUG [PID:14724] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:51.517Z DEBUG [PID:14724] Failed to fetch supported languages
    2025-10-31T14:16:51.517Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 16, port_chain: [3], vendor_id: 0x05E3, product_id: 0x0616, device_version: 0x0402, usb_version: 0x0300, class: 0x09, subclass: 0x00, protocol: 0x03, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB3.0 Hub"), serial_number: None, instance_id: "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3", parent_instance_id: "USB\\ROOT_HUB30\\7&186f03a3&0&0", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)"], port_number: 3, driver: Some("USBHUB3"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x09, subclass: 0x00, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:16:51.517Z DEBUG [PID:14724] Creating device for "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:16:51.517Z DEBUG [PID:14456] Probing device "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:16:51.518Z DEBUG [PID:14456] Probing device "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:16:51.518Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 19, port_chain: [3, 3], vendor_id: 0x05E3, product_id: 0x0754, device_version: 0x1621, usb_version: 0x0320, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB Storage"), serial_number: Some("000000001621"), instance_id: "USB\\VID_05E3&PID_0754\\000000001621", parent_instance_id: "USB\\VID_05E3&PID_0616\\8&37af76c1&0&3", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)#USB(3)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)#USB(3)"], port_number: 3, driver: Some("USBSTOR"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x08, subclass: 0x06, protocol: 0x50, interface_string: None }] }
    2025-10-31T14:16:51.518Z DEBUG [PID:14456] Creating device for "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:16:51.519Z DEBUG [PID:14724] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 20, port_chain: [5], vendor_id: 0x05E3, product_id: 0x0610, device_version: 0x0402, usb_version: 0x0210, class: 0x09, subclass: 0x00, protocol: 0x02, max_packet_size_0: 64, speed: Some(High), manufacturer_string: None, product_string: Some("USB2.0 Hub"), serial_number: None, instance_id: "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(5)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS05)"], port_number: 5, driver: Some("USBHUB3"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x09, subclass: 0x00, protocol: 0x01, interface_string: None }] }
    2025-10-31T14:16:51.519Z DEBUG [PID:14724] Creating device for "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:16:51.521Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 4, port_chain: [8], vendor_id: 0x138A, product_id: 0x00AB, device_version: 0x0164, usb_version: 0x0200, class: 0xFF, subclass: 0x10, protocol: 0xFF, max_packet_size_0: 8, speed: Some(Full), manufacturer_string: None, product_string: None, serial_number: Some("c7aab486d46a"), instance_id: "USB\\VID_138A&PID_00AB\\C7AAB486D46A", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(8)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS08)"], port_number: 8, driver: Some("WUDFRd"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xFF, subclass: 0x00, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:16:51.521Z DEBUG [PID:14456] Creating device for "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:16:51.521Z DEBUG [PID:14456] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:16:51.521Z DEBUG [PID:14456] Failed to fetch supported languages
    2025-10-31T14:16:51.521Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 21, port_chain: [5, 1], vendor_id: 0x1B1C, product_id: 0x1B75, device_version: 0x0311, usb_version: 0x0200, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse"), serial_number: Some("0C01100AAF860CC360027935F5001C01\0\0\0\0\0\0\0\0\0\0\0\0"), instance_id: "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01", parent_instance_id: "USB\\VID_05E3&PID_0610\\5&1c80a72c&0&5", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(5)#USB(1)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS05)#USB(1)"], port_number: 1, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x03, subclass: 0x01, protocol: 0x02, interface_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse") }, InterfaceInfo { interface_number: 1, class: 0x03, subclass: 0x00, protocol: 0x00, interface_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse") }] }
    2025-10-31T14:16:51.522Z DEBUG [PID:14456] Creating device for "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:16:51.522Z DEBUG [PID:14724] create port for device: USB\VID_1366&PID_1069&MI_00\6&423E80E&0&0000 parent: "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:51.523Z DEBUG [PID:14724] create port for device: USB\VID_1366&PID_1069&MI_02\6&423E80E&0&0002 parent: "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:16:51.529Z DEBUG [PID:14724] enumerate: Device with sn 001057762330 has board version PCA10156
    2025-10-31T14:16:51.530Z DEBUG [PID:14724] enumerate plugin: Probe
    2025-10-31T14:16:51.531Z VERBOSE [PID:14724] [2025-10-31 14:16:51.531768Z] J-Link installation directory configured in registry: Computer\HKEY_CURRENT_USER\SOFTWARE\SEGGER\J-Link="C:\\Program Files\\SEGGER\\JLink_V818"
    2025-10-31T14:16:51.531Z INFO [PID:14724] [2025-10-31 14:16:51.531936Z] Opened J-Link DLL at C:\Program Files\SEGGER\JLink_V818\JLink_x64.dll with version 8.18
    2025-10-31T14:16:51.532Z INFO [PID:14724] [2025-10-31 14:16:51.532915Z] Found 1 attached J-Link devices
    2025-10-31T14:16:51.532Z DEBUG [PID:14724] enumerate plugin done in: 1ms
    2025-10-31T14:16:51.532Z DEBUG [PID:14724] enumerate plugin: BOARDCONTROLLER
    2025-10-31T14:16:51.532Z VERBOSE [PID:14724] C API function: enumerate
    2025-10-31T14:16:54.533Z WARN [PID:14724] execute_fn timed out
    2025-10-31T14:16:54.533Z DEBUG [PID:14724] Operation enumerate failed with error code NRFDL_ERR_TIMEOUT
    2025-10-31T14:16:54.533Z ERROR [PID:14724] Failed to enumerate plugin BOARDCONTROLLER: 12
    2025-10-31T14:16:54.533Z DEBUG [PID:14724] enumerate plugin done in: 3000ms
    2025-10-31T14:16:54.533Z DEBUG [PID:14724] enumerate plugin: sdfu
    2025-10-31T14:16:54.534Z DEBUG [PID:14724] enumerate plugin done in: 0ms
    2025-10-31T14:16:54.534Z DEBUG [PID:14724] enumerate plugin: mcuBoot
    2025-10-31T14:16:54.534Z DEBUG [PID:14724] enumerate plugin done in: 0ms
    2025-10-31T14:16:54.535Z DEBUG [PID:14724] [2025-10-31 14:16:54.536027Z] Checking whether operations are supported
    2025-10-31T14:16:54.535Z DEBUG [PID:14724] Probing device "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:16:54.536Z DEBUG [PID:14724] Probing device "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:16:54.536Z DEBUG [PID:14724] Probing device "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:17:01.518Z DEBUG [PID:14456] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=995
    2025-10-31T14:17:01.518Z DEBUG [PID:14456] Failed to fetch supported languages
    2025-10-31T14:17:01.518Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 18, port_chain: [3, 4], vendor_id: 0x0BDA, product_id: 0x8153, device_version: 0x3000, usb_version: 0x0300, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB 10/100/1000 LAN"), serial_number: Some("000001"), instance_id: "USB\\VID_0BDA&PID_8153\\000001", parent_instance_id: "USB\\VID_05E3&PID_0616\\8&37af76c1&0&3", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)#USB(4)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)#USB(4)"], port_number: 4, driver: Some("rtux64w10"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xFF, subclass: 0xFF, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:17:01.518Z DEBUG [PID:14456] Creating device for "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:17:01.518Z DEBUG [PID:14724] Probing device "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:17:01.519Z DEBUG [PID:14456] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=2 index=1 error=31
    2025-10-31T14:17:01.519Z ERROR [PID:14456] Failed to read config descriptor 1: Descriptor request failed. Device might be suspended.
    2025-10-31T14:17:01.519Z DEBUG [PID:14456] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:17:01.519Z DEBUG [PID:14456] Failed to fetch supported languages
    2025-10-31T14:17:01.519Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 27, port_chain: [2], vendor_id: 0x1366, product_id: 0x1069, device_version: 0x0100, usb_version: 0x0200, class: 0xEF, subclass: 0x02, protocol: 0x01, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: Some("J-Link"), serial_number: Some("001057762330"), instance_id: "USB\\VID_1366&PID_1069\\001057762330", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(2)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS02)"], port_number: 2, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x02, subclass: 0x02, protocol: 0x00, interface_string: Some("CDC") }, InterfaceInfo { interface_number: 2, class: 0x02, subclass: 0x02, protocol: 0x00, interface_string: Some("CDC") }, InterfaceInfo { interface_number: 4, class: 0xFF, subclass: 0xFF, protocol: 0xFF, interface_string: Some("BULK interface") }, InterfaceInfo { interface_number: 5, class: 0x08, subclass: 0x06, protocol: 0x50, interface_string: Some("MSD interface") }, InterfaceInfo { interface_number: 6, class: 0x03, subclass: 0x00, protocol: 0x00, interface_string: Some("HID interface") }] }
    2025-10-31T14:17:01.519Z DEBUG [PID:14456] Creating device for "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:17:01.519Z DEBUG [PID:14724] Probing device "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:17:01.519Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 3, port_chain: [7], vendor_id: 0x8087, product_id: 0x0A2B, device_version: 0x0010, usb_version: 0x0200, class: 0xE0, subclass: 0x01, protocol: 0x01, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: None, serial_number: None, instance_id: "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(7)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS07)"], port_number: 7, driver: Some("BTHUSB"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xE0, subclass: 0x01, protocol: 0x01, interface_string: None }, InterfaceInfo { interface_number: 1, class: 0xE0, subclass: 0x01, protocol: 0x01, interface_string: None }] }
    2025-10-31T14:17:01.519Z DEBUG [PID:14456] Creating device for "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:17:01.520Z DEBUG [PID:14456] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:17:01.520Z DEBUG [PID:14456] Failed to fetch supported languages
    2025-10-31T14:17:01.520Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 2, port_chain: [9], vendor_id: 0x0408, product_id: 0x5411, device_version: 0x0001, usb_version: 0x0201, class: 0xEF, subclass: 0x02, protocol: 0x01, max_packet_size_0: 64, speed: Some(High), manufacturer_string: None, product_string: Some("HP HD Camera"), serial_number: Some("0001"), instance_id: "USB\\VID_0408&PID_5411\\0001", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(9)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS09)"], port_number: 9, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x0E, subclass: 0x03, protocol: 0x00, interface_string: Some("HP HD Camera") }, InterfaceInfo { interface_number: 2, class: 0x0E, subclass: 0x03, protocol: 0x00, interface_string: Some("HP IR Camera") }] }
    2025-10-31T14:17:01.520Z DEBUG [PID:14456] Creating device for "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:17:01.520Z DEBUG [PID:14724] Probing device "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:17:01.520Z DEBUG [PID:14456] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:17:01.520Z DEBUG [PID:14456] Failed to fetch supported languages
    2025-10-31T14:17:01.520Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 16, port_chain: [3], vendor_id: 0x05E3, product_id: 0x0616, device_version: 0x0402, usb_version: 0x0300, class: 0x09, subclass: 0x00, protocol: 0x03, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB3.0 Hub"), serial_number: None, instance_id: "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3", parent_instance_id: "USB\\ROOT_HUB30\\7&186f03a3&0&0", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)"], port_number: 3, driver: Some("USBHUB3"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x09, subclass: 0x00, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:17:01.520Z DEBUG [PID:14456] Creating device for "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:17:01.520Z DEBUG [PID:14724] Probing device "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:17:01.521Z DEBUG [PID:14724] Probing device "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:17:01.521Z DEBUG [PID:14724] Probing device "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:17:01.522Z DEBUG [PID:14456] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 20, port_chain: [5], vendor_id: 0x05E3, product_id: 0x0610, device_version: 0x0402, usb_version: 0x0210, class: 0x09, subclass: 0x00, protocol: 0x02, max_packet_size_0: 64, speed: Some(High), manufacturer_string: None, product_string: Some("USB2.0 Hub"), serial_number: None, instance_id: "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(5)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS05)"], port_number: 5, driver: Some("USBHUB3"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x09, subclass: 0x00, protocol: 0x01, interface_string: None }] }
    2025-10-31T14:17:01.522Z DEBUG [PID:14456] Creating device for "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:17:01.522Z DEBUG [PID:14724] [2025-10-31 14:17:01.522954Z] Executing operation: {"operations":[{"operation":{"type":"device-info"},"core":"NRFDL_DEVICE_CORE_APPLICATION"}]}
    2025-10-31T14:17:01.522Z DEBUG [PID:14724] [2025-10-31 14:17:01.523105Z] Looking for file in C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device\plugin-probe-worker.exe
    2025-10-31T14:17:01.522Z DEBUG [PID:14724] [2025-10-31 14:17:01.523253Z] Found file at C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device\plugin-probe-worker.exe
    2025-10-31T14:17:01.522Z VERBOSE [PID:14724] [2025-10-31 14:17:01.523343Z] Created IPC server 3cf5d9f1-d11a-4b34-bbe9-6bd6628b84b1
    2025-10-31T14:17:01.526Z DEBUG [PID:14456] create port for device: USB\VID_1366&PID_1069&MI_00\6&423E80E&0&0000 parent: "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:17:01.526Z DEBUG [PID:14456] create port for device: USB\VID_1366&PID_1069&MI_02\6&423E80E&0&0002 parent: "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:17:01.530Z DEBUG [PID:14724] [2025-10-31 14:17:01.530542Z] Spawned worker process with id 6272
    2025-10-31T14:17:01.530Z VERBOSE [PID:14724] [2025-10-31 14:17:01.530715Z] Accepting IPC connection
    2025-10-31T14:17:01.537Z DEBUG [PID:14456] enumerate: Device with sn 001057762330 has board version PCA10156
    2025-10-31T14:17:01.538Z DEBUG [PID:14456] enumerate plugin: Probe
    2025-10-31T14:17:01.539Z VERBOSE [PID:14456] [2025-10-31 14:17:01.540036Z] J-Link installation directory configured in registry: Computer\HKEY_CURRENT_USER\SOFTWARE\SEGGER\J-Link="C:\\Program Files\\SEGGER\\JLink_V818"
    2025-10-31T14:17:01.540Z INFO [PID:14456] [2025-10-31 14:17:01.540289Z] Opened J-Link DLL at C:\Program Files\SEGGER\JLink_V818\JLink_x64.dll with version 8.18
    2025-10-31T14:17:01.541Z VERBOSE [PID:14724] [2025-10-31 14:17:01.542251Z] Accepted IPC connection
    2025-10-31T14:17:01.542Z VERBOSE [PID:14724] [2025-10-31 14:17:01.542320Z] The worker supervisor's role is finished
    2025-10-31T14:17:01.542Z INFO [PID:14456] [2025-10-31 14:17:01.542304Z] Found 1 attached J-Link devices
    2025-10-31T14:17:01.542Z DEBUG [PID:14456] enumerate plugin done in: 3ms
    2025-10-31T14:17:01.542Z DEBUG [PID:14456] enumerate plugin: BOARDCONTROLLER
    2025-10-31T14:17:01.542Z VERBOSE [PID:14456] C API function: enumerate
    2025-10-31T14:17:01.550Z DEBUG [PID:14724] [2025-10-31 14:17:01.551182Z] Received signal from master, returning alive worker.
    2025-10-31T14:17:01.550Z INFO [PID:14724] [2025-10-31 14:17:01.551325Z] Handshake signatures match
    2025-10-31T14:17:01.551Z INFO [PID:14724] [2025-10-31 14:17:01.551445Z] Connection with Probe worker established.
    2025-10-31T14:17:01.551Z VERBOSE [PID:14724] [2025-10-31 14:17:01.551688Z] Starting trace thread
    2025-10-31T14:17:01.551Z INFO [PID:14724] [2025-10-31 14:17:01.541997Z] {jlink_usb_001057762330} nrf-probe version 0.40.1
    2025-10-31T14:17:01.551Z DEBUG [PID:14724] [2025-10-31 14:17:01.542061Z] {jlink_usb_001057762330} Sending IPC handshake response from worker...
    2025-10-31T14:17:01.551Z DEBUG [PID:14724] [2025-10-31 14:17:01.542288Z] {jlink_usb_001057762330} Started worker message processing loop
    2025-10-31T14:17:01.551Z DEBUG [PID:14724] [2025-10-31 14:17:01.551579Z] {jlink_usb_001057762330} Probe worker received initial message: Initialize(InitializeRequest { configuration: Configuration { jlink: JLinkConfig { dll_location: None }, target: DeviceConfig { swd_clock_frequency: None, adac_timeout: None, firmware_config: None, swd_mode: PointToPoint, target_family: None, override_detection: None, override_sdfw_variant: None } } })
    2025-10-31T14:17:01.558Z VERBOSE [PID:14724] [2025-10-31 14:17:01.559192Z] {jlink_usb_001057762330} Setting up JLink interface.
    2025-10-31T14:17:01.558Z VERBOSE [PID:14724] [2025-10-31 14:17:01.559242Z] {jlink_usb_001057762330} -> connect
    2025-10-31T14:17:01.562Z VERBOSE [PID:14724] [2025-10-31 14:17:01.562270Z] {jlink_usb_001057762330} Applied firmware settings to JLink
    2025-10-31T14:17:01.582Z DEBUG [PID:14724] [2025-10-31 14:17:01.583040Z] {jlink_usb_001057762330} Max frequency: 2000 kHz
    2025-10-31T14:17:01.582Z INFO [PID:14724] [2025-10-31 14:17:01.583202Z] {jlink_usb_001057762330} Clock frequency was set to 2000 kHz
    2025-10-31T14:17:01.583Z INFO [PID:14724] [2025-10-31 14:17:01.583235Z] {jlink_usb_001057762330} Emulator Usb(JLinkSerialNumber(1057762330)) running firmware: J-Link OB-nRF5340-NordicSemi compiled Feb 11 2025 17:15:35
    2025-10-31T14:17:01.583Z VERBOSE [PID:14724] [2025-10-31 14:17:01.583246Z] {jlink_usb_001057762330} <- connect
    2025-10-31T14:17:01.583Z DEBUG [PID:14724] [2025-10-31 14:17:01.583416Z] {jlink_usb_001057762330} Probe worker received message: Request(DeviceIdentification)
    2025-10-31T14:17:01.583Z DEBUG [PID:14724] [2025-10-31 14:17:01.583654Z] {jlink_usb_001057762330} JLINKARM_HW_STATUS: JLINKARM_HW_STATUS { VTarget: 3300, tck: 0, tdi: 1, tdo: 1, tms: 1, tres: 1, trst: 255 }
    2025-10-31T14:17:01.583Z INFO [PID:14724] [2025-10-31 14:17:01.584188Z] {jlink_usb_001057762330} -> Powering up sys and debug region
    2025-10-31T14:17:01.583Z VERBOSE [PID:14724] [2025-10-31 14:17:01.584221Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.584Z VERBOSE [PID:14724] [2025-10-31 14:17:01.584503Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.584Z VERBOSE [PID:14724] [2025-10-31 14:17:01.584530Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.584Z VERBOSE [PID:14724] [2025-10-31 14:17:01.584546Z] {jlink_usb_001057762330} -> read_dp
    2025-10-31T14:17:01.584Z VERBOSE [PID:14724] [2025-10-31 14:17:01.584811Z] {jlink_usb_001057762330} DP read 0xf0000040 from CTRL/STAT
    2025-10-31T14:17:01.584Z VERBOSE [PID:14724] [2025-10-31 14:17:01.584827Z] {jlink_usb_001057762330} <- read_dp
    2025-10-31T14:17:01.584Z DEBUG [PID:14724] [2025-10-31 14:17:01.584847Z] {jlink_usb_001057762330} Powered up sys and dbg regions in 0 ms
    2025-10-31T14:17:01.584Z INFO [PID:14724] [2025-10-31 14:17:01.584852Z] {jlink_usb_001057762330} <- Powering up sys and debug region
    2025-10-31T14:17:01.585Z INFO [PID:14724] [2025-10-31 14:17:01.586217Z] {jlink_usb_001057762330} -> detect device family
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.586237Z] {jlink_usb_001057762330} -> read_dp
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.586600Z] {jlink_usb_001057762330} DP read 0x6ba02477 from DPIDR
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.586628Z] {jlink_usb_001057762330} <- read_dp
    2025-10-31T14:17:01.586Z DEBUG [PID:14724] [2025-10-31 14:17:01.586645Z] {jlink_usb_001057762330} DPIDR: Register { content: 1805657207, revision: 6, part_no: 186, res0: 0, min: 0, version: 2, designer: 571 }
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.586657Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.586661Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.586972Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.586995Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.587324Z] {jlink_usb_001057762330} AP 0 read 0x43800042 from CSW(mem-ap) or RESET(ctrl-ap)
    2025-10-31T14:17:01.586Z VERBOSE [PID:14724] [2025-10-31 14:17:01.587343Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.587349Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.587353Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.587680Z] {jlink_usb_001057762330} DP wrote 0x000000f0 to SELECT = 0x08
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.587698Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588065Z] {jlink_usb_001057762330} AP 0 read 0x84770001 from IDR
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588081Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588087Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588090Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588336Z] {jlink_usb_001057762330} DP wrote 0x01000000 to SELECT = 0x08
    2025-10-31T14:17:01.587Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588350Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588623Z] {jlink_usb_001057762330} AP 1 read 0x43800042 from CSW(mem-ap) or RESET(ctrl-ap)
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588643Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588653Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588659Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588933Z] {jlink_usb_001057762330} DP wrote 0x010000f0 to SELECT = 0x08
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.588950Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589291Z] {jlink_usb_001057762330} AP 1 read 0x84770001 from IDR
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589306Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589314Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.588Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589319Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.589Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589594Z] {jlink_usb_001057762330} DP wrote 0x02000000 to SELECT = 0x08
    2025-10-31T14:17:01.589Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589611Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.589Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589861Z] {jlink_usb_001057762330} AP 2 read 0x00000000 from CSW(mem-ap) or RESET(ctrl-ap)
    2025-10-31T14:17:01.589Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589877Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.589Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589888Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.589Z VERBOSE [PID:14724] [2025-10-31 14:17:01.589895Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.589Z VERBOSE [PID:14724] [2025-10-31 14:17:01.590189Z] {jlink_usb_001057762330} DP wrote 0x020000f0 to SELECT = 0x08
    2025-10-31T14:17:01.589Z VERBOSE [PID:14724] [2025-10-31 14:17:01.590203Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.590481Z] {jlink_usb_001057762330} AP 2 read 0x32880000 from IDR
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.590497Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.590Z DEBUG [PID:14724] [2025-10-31 14:17:01.590513Z] {jlink_usb_001057762330} Detected CTRL-AP revision 3 at AP 2
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.590524Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.590531Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.590796Z] {jlink_usb_001057762330} DP wrote 0x02000030 to SELECT = 0x08
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.590813Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.591084Z] {jlink_usb_001057762330} AP 2 read 0x0000001c from Unknown AP address 0x30
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.591100Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.591108Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.590Z VERBOSE [PID:14724] [2025-10-31 14:17:01.591117Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.591Z VERBOSE [PID:14724] [2025-10-31 14:17:01.591421Z] {jlink_usb_001057762330} DP wrote 0x02000030 to SELECT = 0x08
    2025-10-31T14:17:01.591Z VERBOSE [PID:14724] [2025-10-31 14:17:01.591443Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.591Z VERBOSE [PID:14724] [2025-10-31 14:17:01.591771Z] {jlink_usb_001057762330} AP 2 read 0x00000002 from Unknown AP address 0x34
    2025-10-31T14:17:01.591Z VERBOSE [PID:14724] [2025-10-31 14:17:01.591789Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.591Z DEBUG [PID:14724] [2025-10-31 14:17:01.591809Z] {jlink_usb_001057762330} Device detection: partno 0x0000001c hwrevision 0x00000002
    2025-10-31T14:17:01.591Z INFO [PID:14724] [2025-10-31 14:17:01.591818Z] {jlink_usb_001057762330} <- detect device family
    2025-10-31T14:17:01.591Z VERBOSE [PID:14724] [2025-10-31 14:17:01.592062Z] Got regular response.
    2025-10-31T14:17:01.592Z DEBUG [PID:14724] [2025-10-31 14:17:01.593319Z] Device with sn 001057762330 has board version PCA10156
    2025-10-31T14:17:01.593Z VERBOSE [PID:14724] [2025-10-31 14:17:01.593535Z] Got regular response.
    2025-10-31T14:17:01.593Z DEBUG [PID:14724] [2025-10-31 14:17:01.593447Z] {jlink_usb_001057762330} Probe worker received message: Request(AddFirmwareConfig { firmware_type: ExternalFlash, config: "{\n \"firmware_config\": {\n \"peripheral\": \"SPIM00\"\n },\n \"pins\": {\n \"sck\": 65,\n \"csn\": 69,\n \"io0\": 66,\n \"io1\": 68,\n \"io2\": 67,\n \"io3\": 64\n },\n \"flash_size\": 8388608,\n \"page_size\": 4096,\n \"sck_frequency\": 8000000,\n \"address_mode\": \"MODE24BIT\"\n}\n", force: false })
    2025-10-31T14:17:01.593Z VERBOSE [PID:14724] [2025-10-31 14:17:01.593591Z] Detected board PCA10156, expected part no: 28, detected part no: 28, default external flash configuration loaded
    2025-10-31T14:17:01.593Z DEBUG [PID:14724] [2025-10-31 14:17:01.593771Z] {jlink_usb_001057762330} Probe worker received message: Request(FwVersion)
    2025-10-31T14:17:01.593Z VERBOSE [PID:14724] [2025-10-31 14:17:01.593900Z] Got regular response.
    2025-10-31T14:17:01.593Z DEBUG [PID:14724] [2025-10-31 14:17:01.593972Z] {jlink_usb_001057762330} Probe worker received message: Request(ProtectionGet(Application))
    2025-10-31T14:17:01.593Z VERBOSE [PID:14724] [2025-10-31 14:17:01.594018Z] {jlink_usb_001057762330} Getting protection status for family nRF54l, core Application
    2025-10-31T14:17:01.593Z DEBUG [PID:14724] [2025-10-31 14:17:01.594039Z] {jlink_usb_001057762330} -> Get Protection Status
    2025-10-31T14:17:01.593Z VERBOSE [PID:14724] [2025-10-31 14:17:01.594054Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.593Z VERBOSE [PID:14724] [2025-10-31 14:17:01.594061Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.593Z VERBOSE [PID:14724] [2025-10-31 14:17:01.594389Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.594Z VERBOSE [PID:14724] [2025-10-31 14:17:01.594417Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.594Z VERBOSE [PID:14724] [2025-10-31 14:17:01.594792Z] {jlink_usb_001057762330} AP 0 read 0x43800042 from CSW(mem-ap) or RESET(ctrl-ap)
    2025-10-31T14:17:01.594Z VERBOSE [PID:14724] [2025-10-31 14:17:01.594811Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.594Z VERBOSE [PID:14724] [2025-10-31 14:17:01.594894Z] Got regular response.
    2025-10-31T14:17:01.594Z DEBUG [PID:14724] [2025-10-31 14:17:01.594819Z] {jlink_usb_001057762330} Checking protection on AP 0: CSW=0x43800042
    2025-10-31T14:17:01.594Z DEBUG [PID:14724] [2025-10-31 14:17:01.594824Z] {jlink_usb_001057762330} Access port protection is 'None'
    2025-10-31T14:17:01.594Z DEBUG [PID:14724] [2025-10-31 14:17:01.594828Z] {jlink_usb_001057762330} <- Get Protection Status
    2025-10-31T14:17:01.594Z DEBUG [PID:14724] [2025-10-31 14:17:01.595001Z] {jlink_usb_001057762330} Probe worker received message: Request(DeviceVersion)
    2025-10-31T14:17:01.594Z DEBUG [PID:14724] [2025-10-31 14:17:01.595041Z] {jlink_usb_001057762330} -> Get Protection Status
    2025-10-31T14:17:01.594Z VERBOSE [PID:14724] [2025-10-31 14:17:01.595050Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.594Z VERBOSE [PID:14724] [2025-10-31 14:17:01.595054Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.595338Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.595356Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.595671Z] {jlink_usb_001057762330} AP 0 read 0x43800042 from CSW(mem-ap) or RESET(ctrl-ap)
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.595692Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.595Z DEBUG [PID:14724] [2025-10-31 14:17:01.595710Z] {jlink_usb_001057762330} Checking protection on AP 0: CSW=0x43800042
    2025-10-31T14:17:01.595Z DEBUG [PID:14724] [2025-10-31 14:17:01.595718Z] {jlink_usb_001057762330} Access port protection is 'None'
    2025-10-31T14:17:01.595Z DEBUG [PID:14724] [2025-10-31 14:17:01.595729Z] {jlink_usb_001057762330} <- Get Protection Status
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.595760Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.595771Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.596063Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.596078Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.595Z VERBOSE [PID:14724] [2025-10-31 14:17:01.596411Z] {jlink_usb_001057762330} AP 0 read 0x43800042 from CSW(mem-ap) or RESET(ctrl-ap)
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.596424Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.596439Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.596443Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.596787Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.596808Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597144Z] {jlink_usb_001057762330} AP 0 read 0x43800042 from CSW(mem-ap) or RESET(ctrl-ap)
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597160Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597166Z] {jlink_usb_001057762330} -> write_ap
    2025-10-31T14:17:01.596Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597170Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.597Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597462Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.597Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597476Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.597Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597818Z] {jlink_usb_001057762330} Submitted write to AP 0: Write 0x03800042 to CSW(mem-ap) or RESET(ctrl-ap)
    2025-10-31T14:17:01.597Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597836Z] {jlink_usb_001057762330} <- write_ap
    2025-10-31T14:17:01.597Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597842Z] {jlink_usb_001057762330} -> write_ap
    2025-10-31T14:17:01.597Z VERBOSE [PID:14724] [2025-10-31 14:17:01.597846Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.597Z VERBOSE [PID:14724] [2025-10-31 14:17:01.598100Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.597Z VERBOSE [PID:14724] [2025-10-31 14:17:01.598114Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.598Z VERBOSE [PID:14724] [2025-10-31 14:17:01.598476Z] {jlink_usb_001057762330} Submitted write to AP 0: Write 0x00ffc320 to TAR(mem-ap) or ERASEALL(ctrl-ap)
    2025-10-31T14:17:01.598Z VERBOSE [PID:14724] [2025-10-31 14:17:01.598497Z] {jlink_usb_001057762330} <- write_ap
    2025-10-31T14:17:01.598Z VERBOSE [PID:14724] [2025-10-31 14:17:01.598503Z] {jlink_usb_001057762330} -> read_ap
    2025-10-31T14:17:01.598Z VERBOSE [PID:14724] [2025-10-31 14:17:01.598507Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.598Z VERBOSE [PID:14724] [2025-10-31 14:17:01.598804Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.598Z VERBOSE [PID:14724] [2025-10-31 14:17:01.598822Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599115Z] {jlink_usb_001057762330} AP 0 read 0x41414330 from DRW(mem-ap) or APPROTECT.STATUS(ctrl-ap)
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599134Z] {jlink_usb_001057762330} <- read_ap
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599194Z] Got regular response.
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599315Z] Expecting trace channel to disconnect.
    2025-10-31T14:17:01.599Z DEBUG [PID:14724] [2025-10-31 14:17:01.599347Z] Terminating worker with id 6272
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599383Z] Waiting for worker to exit.
    2025-10-31T14:17:01.599Z DEBUG [PID:14724] [2025-10-31 14:17:01.599403Z] {jlink_usb_001057762330} Probe worker received message: Shutdown
    2025-10-31T14:17:01.599Z INFO [PID:14724] [2025-10-31 14:17:01.599439Z] {jlink_usb_001057762330} -> Powering down debug region
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599448Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599693Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599708Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.599717Z] {jlink_usb_001057762330} -> read_dp
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600043Z] {jlink_usb_001057762330} DP read 0xf0000040 from CTRL/STAT
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600064Z] {jlink_usb_001057762330} <- read_dp
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600073Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600421Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.599Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600440Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.600Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600450Z] {jlink_usb_001057762330} -> read_dp
    2025-10-31T14:17:01.600Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600702Z] Waiting for worker to exit.
    2025-10-31T14:17:01.600Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600726Z] {jlink_usb_001057762330} DP read 0xf0000040 from CTRL/STAT
    2025-10-31T14:17:01.600Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600745Z] {jlink_usb_001057762330} <- read_dp
    2025-10-31T14:17:01.600Z VERBOSE [PID:14724] [2025-10-31 14:17:01.600755Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.600Z VERBOSE [PID:14724] [2025-10-31 14:17:01.601042Z] {jlink_usb_001057762330} DP wrote 0x00000000 to CTRL/STAT = 0x04
    2025-10-31T14:17:01.600Z VERBOSE [PID:14724] [2025-10-31 14:17:01.601060Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.601Z VERBOSE [PID:14724] [2025-10-31 14:17:01.602288Z] Waiting for worker to exit.
    2025-10-31T14:17:01.603Z VERBOSE [PID:14724] [2025-10-31 14:17:01.603364Z] {jlink_usb_001057762330} -> write_dp_unchecked
    2025-10-31T14:17:01.603Z VERBOSE [PID:14724] [2025-10-31 14:17:01.603731Z] {jlink_usb_001057762330} DP wrote 0x00000000 to SELECT = 0x08
    2025-10-31T14:17:01.603Z VERBOSE [PID:14724] [2025-10-31 14:17:01.603754Z] {jlink_usb_001057762330} <- write_dp_unchecked
    2025-10-31T14:17:01.603Z VERBOSE [PID:14724] [2025-10-31 14:17:01.603765Z] {jlink_usb_001057762330} -> read_dp
    2025-10-31T14:17:01.603Z VERBOSE [PID:14724] [2025-10-31 14:17:01.604101Z] {jlink_usb_001057762330} DP read 0x00000040 from CTRL/STAT
    2025-10-31T14:17:01.603Z VERBOSE [PID:14724] [2025-10-31 14:17:01.604121Z] {jlink_usb_001057762330} <- read_dp
    2025-10-31T14:17:01.604Z DEBUG [PID:14724] [2025-10-31 14:17:01.604132Z] {jlink_usb_001057762330} Powered down sys and dbg regions in 4 ms
    2025-10-31T14:17:01.604Z INFO [PID:14724] [2025-10-31 14:17:01.604139Z] {jlink_usb_001057762330} <- Powering down debug region
    2025-10-31T14:17:01.604Z VERBOSE [PID:14724] [2025-10-31 14:17:01.604157Z] {jlink_usb_001057762330} Closing emulator connection
    2025-10-31T14:17:01.604Z VERBOSE [PID:14724] [2025-10-31 14:17:01.604899Z] Waiting for worker to exit.
    2025-10-31T14:17:01.608Z VERBOSE [PID:14724] [2025-10-31 14:17:01.608430Z] Waiting for worker to exit.
    2025-10-31T14:17:01.613Z VERBOSE [PID:14724] [2025-10-31 14:17:01.614026Z] Waiting for worker to exit.
    2025-10-31T14:17:01.622Z VERBOSE [PID:14724] [2025-10-31 14:17:01.622526Z] Waiting for worker to exit.
    2025-10-31T14:17:01.631Z DEBUG [PID:14724] [2025-10-31 14:17:01.631053Z] {jlink_usb_001057762330} Probe worker stopped.
    2025-10-31T14:17:01.633Z VERBOSE [PID:14724] [2025-10-31 14:17:01.634241Z] Trace channel disconnected as expected.
    2025-10-31T14:17:01.633Z VERBOSE [PID:14724] [2025-10-31 14:17:01.634312Z] Trace thread ends now...
    2025-10-31T14:17:01.635Z VERBOSE [PID:14724] [2025-10-31 14:17:01.636064Z] Waiting for worker to exit.
    2025-10-31T14:17:01.657Z INFO [PID:14724] [2025-10-31 14:17:01.657701Z] Worker exited successfully
    2025-10-31T14:17:01.657Z VERBOSE [PID:14724] [2025-10-31 14:17:01.657756Z] Joined trace thread.
    2025-10-31T14:17:01.657Z DEBUG [PID:14724] join thread finished: true
    2025-10-31T14:17:01.658Z VERBOSE [PID:14724] BoardControllerPlugin::drop - ref 0x23e618766b0
    2025-10-31T14:17:04.543Z WARN [PID:14456] execute_fn timed out
    2025-10-31T14:17:04.543Z DEBUG [PID:14456] Operation enumerate failed with error code NRFDL_ERR_TIMEOUT
    2025-10-31T14:17:04.543Z ERROR [PID:14456] Failed to enumerate plugin BOARDCONTROLLER: 12
    2025-10-31T14:17:04.543Z DEBUG [PID:14456] enumerate plugin done in: 3001ms
    2025-10-31T14:17:04.543Z DEBUG [PID:14456] enumerate plugin: sdfu
    2025-10-31T14:17:04.544Z DEBUG [PID:14456] enumerate plugin done in: 0ms
    2025-10-31T14:17:04.544Z DEBUG [PID:14456] enumerate plugin: mcuBoot
    2025-10-31T14:17:04.545Z DEBUG [PID:14456] enumerate plugin done in: 1ms
    2025-10-31T14:17:04.546Z INFO [PID:14456] Unable to find 'nrfutil_device_version' field in batch file. Batch file might be incompatible with this verson of nrfutil-device
    2025-10-31T14:17:04.546Z VERBOSE [PID:14456] C API function: supports_device_operations
    2025-10-31T14:17:04.547Z VERBOSE [PID:14456] boardController trait not found on device, operations not supported.
    2025-10-31T14:17:04.547Z WARN [PID:14456] No plugins support device operation: {"devkit":{"boardVersion":"PCA10156","deviceFamily":"NRF54L_FAMILY"},"id":5,"probe":{},"serialNumber":"001057762330","serialPorts":[{"comName":"COM7","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_00#6&423E80E&0&0000#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":0,"vendorId":"1366"},{"comName":"COM8","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_02#6&423E80E&0&0002#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":1,"vendorId":"1366"}],"traits":{"boardController":false,"broken":false,"devkit":true,"jlink":true,"mcuBoot":false,"modem":false,"nordicDfu":false,"nordicUsb":false,"seggerUsb":true,"serialPorts":true,"usb":true},"usb":{"device":{"address":27,"busNumber":2,"descriptor":{"bDescriptorType":1,"bcdDevice":256,"idProduct":4201,"idVendor":4966}},"manufacturer":"SEGGER","osDevicePath":"\\\\?\\USB#VID_1366&PID_1069#001057762330#{A5DCBF10-6530-11D2-901F-00C04FB951ED}","product":"J-Link","serialNumber":"001057762330"},"usbIdentifier":"\\\\?\\USB#VID_1366&PID_1069#001057762330#{A5DCBF10-6530-11D2-901F-00C04FB951ED}"}
    2025-10-31T14:17:04.547Z WARN [PID:14456] Error executing operations for 1057762330: The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized (NotFound)
    2025-10-31T14:17:04.547Z VERBOSE [PID:14456] BoardControllerPlugin::drop - ref 0x22f8e2995c0
    2025-10-31T14:17:06.559Z ERROR [PID:14456] Error: Failed with exit code 1.
    One or more batch tasks failed:
    * 1057762330: The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized (NotFound)


    Message: Batch task smp failed, The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized.
    2025-10-31T14:17:06.568Z INFO Selected device with the serial number 001057762330
    2025-10-31T14:17:06.577Z DEBUG Sending event "board-configurator: device selected"
    2025-10-31T14:17:06.578Z DEBUG Sending event "board-configurator: running nrfutil device"
    2025-10-31T14:17:06.647Z INFO [PID:14308] nrfutil-device (version = 2.12.3, platform = x86_64-pc-windows-msvc, classification = nrf-external) invoked with x-execute-batch --batch-json {"operations":[{"operation":{"type":"smp","operation":0,"group_id":64,"command_id":1,"sequence_number":0},"operationId":"1"}]} --serial-number 001057762330 --json --log-output=stdout --log-level trace
    2025-10-31T14:17:06.648Z DEBUG [PID:14308] cargo = false, force_libnrfdl_lookup = false, force_nrfutil_libdir = false
    2025-10-31T14:17:06.648Z DEBUG [PID:14308] Creating the nrfdl context via nrfdl_create_context_with_config: Plugin location is assumed to be C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device
    2025-10-31T14:17:06.648Z DEBUG [PID:14308] Loading plugins from directory C:\Users\jade.mouillot\AppData\Roaming\nrfconnect\nrfutil-sandboxes\8.1.1\device\2.12.3\lib\nrfutil-device
    2025-10-31T14:17:06.659Z VERBOSE [PID:14308] C API function: supported_traits
    2025-10-31T14:17:06.659Z VERBOSE [PID:14308] [2025-10-31 14:17:06.655311Z] J-Link installation directory configured in registry: Computer\HKEY_CURRENT_USER\SOFTWARE\SEGGER\J-Link="C:\\Program Files\\SEGGER\\JLink_V818"
    2025-10-31T14:17:06.659Z INFO [PID:14308] [2025-10-31 14:17:06.658964Z] Opened J-Link DLL at C:\Program Files\SEGGER\JLink_V818\JLink_x64.dll with version 8.18
    2025-10-31T14:17:06.659Z VERBOSE [PID:14308] C API function: get_version_list
    2025-10-31T14:17:06.659Z DEBUG [PID:14308] Operation get_version_list failed with error code NRFDL_ERR_NOT_SUPPORTED
    2025-10-31T14:17:06.659Z DEBUG [PID:14308] Plugin BOARDCONTROLLER does not support `get_version_list`
    2025-10-31T14:17:06.659Z DEBUG [PID:14308] Plugin sdfu does not support `get_version_list`
    2025-10-31T14:17:06.659Z DEBUG [PID:14308] Plugin mcuBoot does not support `get_version_list`
    2025-10-31T14:17:06.659Z DEBUG [PID:14308] enumerate_devices
    2025-10-31T14:17:06.660Z DEBUG [PID:14308] Probing device "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:17:06.660Z DEBUG [PID:14308] Probing device "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:17:06.660Z DEBUG [PID:14308] Probing device "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:17:06.661Z DEBUG [PID:14308] Probing device "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:17:06.661Z DEBUG [PID:14308] Probing device "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:17:06.662Z DEBUG [PID:14308] Probing device "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:17:06.663Z DEBUG [PID:14308] Probing device "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:17:06.663Z DEBUG [PID:14308] Probing device "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:17:06.664Z DEBUG [PID:14308] Probing device "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:17:06.664Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 19, port_chain: [3, 3], vendor_id: 0x05E3, product_id: 0x0754, device_version: 0x1621, usb_version: 0x0320, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB Storage"), serial_number: Some("000000001621"), instance_id: "USB\\VID_05E3&PID_0754\\000000001621", parent_instance_id: "USB\\VID_05E3&PID_0616\\8&37af76c1&0&3", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)#USB(3)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)#USB(3)"], port_number: 3, driver: Some("USBSTOR"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x08, subclass: 0x06, protocol: 0x50, interface_string: None }] }
    2025-10-31T14:17:06.664Z DEBUG [PID:14308] Creating device for "USB\\VID_05E3&PID_0754\\000000001621"
    2025-10-31T14:17:06.667Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 4, port_chain: [8], vendor_id: 0x138A, product_id: 0x00AB, device_version: 0x0164, usb_version: 0x0200, class: 0xFF, subclass: 0x10, protocol: 0xFF, max_packet_size_0: 8, speed: Some(Full), manufacturer_string: None, product_string: None, serial_number: Some("c7aab486d46a"), instance_id: "USB\\VID_138A&PID_00AB\\C7AAB486D46A", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(8)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS08)"], port_number: 8, driver: Some("WUDFRd"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xFF, subclass: 0x00, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:17:06.667Z DEBUG [PID:14308] Creating device for "USB\\VID_138A&PID_00AB\\C7AAB486D46A"
    2025-10-31T14:17:06.668Z DEBUG [PID:14308] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:17:06.668Z DEBUG [PID:14308] Failed to fetch supported languages
    2025-10-31T14:17:06.668Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 21, port_chain: [5, 1], vendor_id: 0x1B1C, product_id: 0x1B75, device_version: 0x0311, usb_version: 0x0200, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse"), serial_number: Some("0C01100AAF860CC360027935F5001C01\0\0\0\0\0\0\0\0\0\0\0\0"), instance_id: "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01", parent_instance_id: "USB\\VID_05E3&PID_0610\\5&1c80a72c&0&5", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(5)#USB(1)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS05)#USB(1)"], port_number: 1, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x03, subclass: 0x01, protocol: 0x02, interface_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse") }, InterfaceInfo { interface_number: 1, class: 0x03, subclass: 0x00, protocol: 0x00, interface_string: Some("CORSAIR HARPOON RGB PRO Gaming Mouse") }] }
    2025-10-31T14:17:06.668Z DEBUG [PID:14308] Creating device for "USB\\VID_1B1C&PID_1B75\\0C01100AAF860CC360027935F5001C01"
    2025-10-31T14:17:16.530Z DEBUG [PID:14308] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=995
    2025-10-31T14:17:16.530Z DEBUG [PID:14308] Failed to fetch supported languages
    2025-10-31T14:17:16.530Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 18, port_chain: [3, 4], vendor_id: 0x0BDA, product_id: 0x8153, device_version: 0x3000, usb_version: 0x0300, class: 0x00, subclass: 0x00, protocol: 0x00, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB 10/100/1000 LAN"), serial_number: Some("000001"), instance_id: "USB\\VID_0BDA&PID_8153\\000001", parent_instance_id: "USB\\VID_05E3&PID_0616\\8&37af76c1&0&3", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)#USB(4)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)#USB(4)"], port_number: 4, driver: Some("rtux64w10"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xFF, subclass: 0xFF, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:17:16.530Z DEBUG [PID:14308] Creating device for "USB\\VID_0BDA&PID_8153\\000001"
    2025-10-31T14:17:16.531Z DEBUG [PID:14308] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=2 index=1 error=31
    2025-10-31T14:17:16.531Z ERROR [PID:14308] Failed to read config descriptor 1: Descriptor request failed. Device might be suspended.
    2025-10-31T14:17:16.531Z DEBUG [PID:14308] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:17:16.531Z DEBUG [PID:14308] Failed to fetch supported languages
    2025-10-31T14:17:16.531Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 27, port_chain: [2], vendor_id: 0x1366, product_id: 0x1069, device_version: 0x0100, usb_version: 0x0200, class: 0xEF, subclass: 0x02, protocol: 0x01, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: Some("J-Link"), serial_number: Some("001057762330"), instance_id: "USB\\VID_1366&PID_1069\\001057762330", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(2)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS02)"], port_number: 2, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x02, subclass: 0x02, protocol: 0x00, interface_string: Some("CDC") }, InterfaceInfo { interface_number: 2, class: 0x02, subclass: 0x02, protocol: 0x00, interface_string: Some("CDC") }, InterfaceInfo { interface_number: 4, class: 0xFF, subclass: 0xFF, protocol: 0xFF, interface_string: Some("BULK interface") }, InterfaceInfo { interface_number: 5, class: 0x08, subclass: 0x06, protocol: 0x50, interface_string: Some("MSD interface") }, InterfaceInfo { interface_number: 6, class: 0x03, subclass: 0x00, protocol: 0x00, interface_string: Some("HID interface") }] }
    2025-10-31T14:17:16.531Z DEBUG [PID:14308] Creating device for "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:17:16.532Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 3, port_chain: [7], vendor_id: 0x8087, product_id: 0x0A2B, device_version: 0x0010, usb_version: 0x0200, class: 0xE0, subclass: 0x01, protocol: 0x01, max_packet_size_0: 64, speed: Some(Full), manufacturer_string: None, product_string: None, serial_number: None, instance_id: "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(7)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS07)"], port_number: 7, driver: Some("BTHUSB"), interfaces: [InterfaceInfo { interface_number: 0, class: 0xE0, subclass: 0x01, protocol: 0x01, interface_string: None }, InterfaceInfo { interface_number: 1, class: 0xE0, subclass: 0x01, protocol: 0x01, interface_string: None }] }
    2025-10-31T14:17:16.533Z DEBUG [PID:14308] Creating device for "USB\\VID_8087&PID_0A2B\\5&1C80A72C&0&7"
    2025-10-31T14:17:16.533Z DEBUG [PID:14308] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:17:16.533Z DEBUG [PID:14308] Failed to fetch supported languages
    2025-10-31T14:17:16.533Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 2, port_chain: [9], vendor_id: 0x0408, product_id: 0x5411, device_version: 0x0001, usb_version: 0x0201, class: 0xEF, subclass: 0x02, protocol: 0x01, max_packet_size_0: 64, speed: Some(High), manufacturer_string: None, product_string: Some("HP HD Camera"), serial_number: Some("0001"), instance_id: "USB\\VID_0408&PID_5411\\0001", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(9)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS09)"], port_number: 9, driver: Some("usbccgp"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x0E, subclass: 0x03, protocol: 0x00, interface_string: Some("HP HD Camera") }, InterfaceInfo { interface_number: 2, class: 0x0E, subclass: 0x03, protocol: 0x00, interface_string: Some("HP IR Camera") }] }
    2025-10-31T14:17:16.533Z DEBUG [PID:14308] Creating device for "USB\\VID_0408&PID_5411\\0001"
    2025-10-31T14:17:16.534Z DEBUG [PID:14308] IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION failed: type=3 index=0 error=31
    2025-10-31T14:17:16.534Z DEBUG [PID:14308] Failed to fetch supported languages
    2025-10-31T14:17:16.534Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)", device_address: 16, port_chain: [3], vendor_id: 0x05E3, product_id: 0x0616, device_version: 0x0402, usb_version: 0x0300, class: 0x09, subclass: 0x00, protocol: 0x03, max_packet_size_0: 9, speed: Some(Super), manufacturer_string: None, product_string: Some("USB3.0 Hub"), serial_number: None, instance_id: "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3", parent_instance_id: "USB\\ROOT_HUB30\\7&186f03a3&0&0", location_paths: ["PCIROOT(0)#PCI(1C04)#PCI(0000)#PCI(0200)#PCI(0000)#USBROOT(0)#USB(3)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(RP05)#ACPI(PXSX)#ACPI(EP02)#ACPI(TXHC)#ACPI(RHUB)#ACPI(SS01)"], port_number: 3, driver: Some("USBHUB3"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x09, subclass: 0x00, protocol: 0x00, interface_string: None }] }
    2025-10-31T14:17:16.534Z DEBUG [PID:14308] Creating device for "USB\\VID_05E3&PID_0616\\8&37AF76C1&0&3"
    2025-10-31T14:17:16.536Z DEBUG [PID:14308] probe device: DeviceInfo { bus_id: "PCIROOT(0)#PCI(1400)#USBROOT(0)", device_address: 20, port_chain: [5], vendor_id: 0x05E3, product_id: 0x0610, device_version: 0x0402, usb_version: 0x0210, class: 0x09, subclass: 0x00, protocol: 0x02, max_packet_size_0: 64, speed: Some(High), manufacturer_string: None, product_string: Some("USB2.0 Hub"), serial_number: None, instance_id: "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5", parent_instance_id: "USB\\ROOT_HUB30\\4&209f0815&0&0", location_paths: ["PCIROOT(0)#PCI(1400)#USBROOT(0)#USB(5)", "ACPI(_SB_)#ACPI(PCI0)#ACPI(XHC_)#ACPI(RHUB)#ACPI(HS05)"], port_number: 5, driver: Some("USBHUB3"), interfaces: [InterfaceInfo { interface_number: 0, class: 0x09, subclass: 0x00, protocol: 0x01, interface_string: None }] }
    2025-10-31T14:17:16.536Z DEBUG [PID:14308] Creating device for "USB\\VID_05E3&PID_0610\\5&1C80A72C&0&5"
    2025-10-31T14:17:16.539Z DEBUG [PID:14308] create port for device: USB\VID_1366&PID_1069&MI_00\6&423E80E&0&0000 parent: "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:17:16.540Z DEBUG [PID:14308] create port for device: USB\VID_1366&PID_1069&MI_02\6&423E80E&0&0002 parent: "USB\\VID_1366&PID_1069\\001057762330"
    2025-10-31T14:17:16.551Z DEBUG [PID:14308] enumerate: Device with sn 001057762330 has board version PCA10156
    2025-10-31T14:17:16.553Z DEBUG [PID:14308] enumerate plugin: Probe
    2025-10-31T14:17:16.554Z VERBOSE [PID:14308] [2025-10-31 14:17:16.554548Z] J-Link installation directory configured in registry: Computer\HKEY_CURRENT_USER\SOFTWARE\SEGGER\J-Link="C:\\Program Files\\SEGGER\\JLink_V818"
    2025-10-31T14:17:16.554Z INFO [PID:14308] [2025-10-31 14:17:16.554846Z] Opened J-Link DLL at C:\Program Files\SEGGER\JLink_V818\JLink_x64.dll with version 8.18
    2025-10-31T14:17:16.556Z INFO [PID:14308] [2025-10-31 14:17:16.556587Z] Found 1 attached J-Link devices
    2025-10-31T14:17:16.556Z DEBUG [PID:14308] enumerate plugin done in: 3ms
    2025-10-31T14:17:16.556Z DEBUG [PID:14308] enumerate plugin: BOARDCONTROLLER
    2025-10-31T14:17:16.557Z VERBOSE [PID:14308] C API function: enumerate
    2025-10-31T14:17:19.558Z WARN [PID:14308] execute_fn timed out
    2025-10-31T14:17:19.558Z DEBUG [PID:14308] Operation enumerate failed with error code NRFDL_ERR_TIMEOUT
    2025-10-31T14:17:19.558Z ERROR [PID:14308] Failed to enumerate plugin BOARDCONTROLLER: 12
    2025-10-31T14:17:19.558Z DEBUG [PID:14308] enumerate plugin done in: 3001ms
    2025-10-31T14:17:19.558Z DEBUG [PID:14308] enumerate plugin: sdfu
    2025-10-31T14:17:19.559Z DEBUG [PID:14308] enumerate plugin done in: 1ms
    2025-10-31T14:17:19.559Z DEBUG [PID:14308] enumerate plugin: mcuBoot
    2025-10-31T14:17:19.560Z DEBUG [PID:14308] enumerate plugin done in: 1ms
    2025-10-31T14:17:19.561Z INFO [PID:14308] Unable to find 'nrfutil_device_version' field in batch file. Batch file might be incompatible with this verson of nrfutil-device
    2025-10-31T14:17:19.561Z VERBOSE [PID:14308] C API function: supports_device_operations
    2025-10-31T14:17:19.561Z VERBOSE [PID:14308] boardController trait not found on device, operations not supported.
    2025-10-31T14:17:19.562Z WARN [PID:14308] No plugins support device operation: {"devkit":{"boardVersion":"PCA10156","deviceFamily":"NRF54L_FAMILY"},"id":5,"probe":{},"serialNumber":"001057762330","serialPorts":[{"comName":"COM7","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_00#6&423E80E&0&0000#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":0,"vendorId":"1366"},{"comName":"COM8","manufacturer":"Microsoft","path":"\\\\?\\USB#VID_1366&PID_1069&MI_02#6&423E80E&0&0002#{86E0D1E0-8089-11D0-9CE4-08003E301F73}","productId":"1069","serialNumber":"001057762330","vcom":1,"vendorId":"1366"}],"traits":{"boardController":false,"broken":false,"devkit":true,"jlink":true,"mcuBoot":false,"modem":false,"nordicDfu":false,"nordicUsb":false,"seggerUsb":true,"serialPorts":true,"usb":true},"usb":{"device":{"address":27,"busNumber":2,"descriptor":{"bDescriptorType":1,"bcdDevice":256,"idProduct":4201,"idVendor":4966}},"manufacturer":"SEGGER","osDevicePath":"\\\\?\\USB#VID_1366&PID_1069#001057762330#{A5DCBF10-6530-11D2-901F-00C04FB951ED}","product":"J-Link","serialNumber":"001057762330"},"usbIdentifier":"\\\\?\\USB#VID_1366&PID_1069#001057762330#{A5DCBF10-6530-11D2-901F-00C04FB951ED}"}
    2025-10-31T14:17:19.562Z WARN [PID:14308] Error executing operations for 1057762330: The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized (NotFound)
    2025-10-31T14:17:19.562Z VERBOSE [PID:14308] BoardControllerPlugin::drop - ref 0x25d8620c280
    2025-10-31T14:17:21.586Z ERROR [PID:14308] Error: Failed with exit code 1.
    One or more batch tasks failed:
    * 1057762330: The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized (NotFound)


    Message: Batch task smp failed, The operation you tried to run is not available for the selected device.

    The operation is either not supported for this type of device or the device has issues and it cannot be recognized.
    2025-10-31T14:17:25.008Z INFO Deselected device
    2025-10-31T14:17:25.011Z DEBUG Sending event "board-configurator: device deselected "
    2025-10-31T14:17:25.012Z DEBUG Rendering SidePanel


    Maybe I am doing something wrong ?

    Thank you !

  • I got the following feedback from one of the developers who reviewed your log:

    It looks like something which we've seen before, some USB devices can trip up our board controller detection. Could you ask the customer if it works if he uses a different mouse? We've had problems with corsair devices before.

    Could you please try this if possible and report back whether this make it work consistently?

    Thanks,

    Vidar

  • Hello,
    Thanks for asking!
    I try to do the same steps several times with a Microsoft Mouse this time, and effectivly, it works much better!
    Thank you very much!

  • Thank you for confirming. I will relay this to the developers so they can try to address this issue in a future release.

Related