using quickstart I can't find the DK

There are two USB ports.  IMCU and nrf5340.  I had a lot of trouble with bad cables but i found one that works and I find that I have a jlink drive that pops up so I know there is a good connection.  However, when I run the quickstart, it does not find the DK.  vscode also does not find the DK.

It tells me to provied the log.  however there isn't much to the output.

2024-03-27T21:14:24.036Z INFO Initialising nrfutil module: device
2024-03-27T21:14:24.053Z DEBUG Started watching devices
2024-03-27T21:14:27.675Z INFO Using nrfutil-device core version: 7.7.1
2024-03-27T21:14:28.515Z INFO Using nrfutil-device version: 2.1.1
2024-03-27T21:14:28.515Z INFO Using nrf-device-lib version: 0.17.5
2024-03-27T21:14:28.515Z INFO Using nrfjprog DLL version: 10.24.0
2024-03-27T21:14:28.516Z INFO Using JLink version: JLink_V7.94e

Any suggestions?  I'm not sure what I've got wrong.

  • I was able to get the proper version working with reboots.

  • nrf serial wants to use its version and nrfutil-device wants to use the older.  the reality is that I must reboot often to get things working.

    ```
    .vscode\extensions\nordic-semiconductor.nrf-connect-2024.3.25-win32-x64\platform\nrfutil\bin>nrfutil-device list --log-output=stdout --json-pretty
    {
    "type": "log",
    "data": {
    "level": "INFO",
    "message": "nrfutil-device (version = 2.0.0, platform = x86_64-pc-windows-msvc) invoked with list --log-output=stdout --json-pretty ",
    "timestamp": "2024-04-13T15:08:57.413Z"
    }
    }
    {
    "type": "log",
    "data": {
    "level": "WARN",
    "message": "[JlinkARM] JlinkARM version non expected one found: JLink_V7.94e, expected: JLink_V7.88j",
    "timestamp": "2024-04-13T15:08:57.886Z"
    }
    }
    {
    "type": "task_begin",
    "data": {
    "task": {
    "id": "e965ad9edc2b4ed588ab614ea8414dc4",
    "description": "list_devices",
    "name": "list_devices",
    "data": null
    }
    }
    }

    ```

    the connection works for a while and then I'm unable to get the devices to come back.

Related