Configuration issue through vscode.

I am working with the Ebyte e83 Dev board and Also got the ARM-JTAG programmer.

I have been trying to follow the nrf connect for VS code series and seems to get stuck on finding the device.

I can't seem to build any configuration for board that works on VScode. any help would be appereciated I am just starting out with this MCU.

Had lots of weird issues but resolved them most of it got stuck on board configuration. 

Parents
  • This is the error I am getting when trying to assign a board for flashing

  • Sucess!! 

      

    and here is the config for future reference for others

    {
        "version": 2,
        "cmakeMinimumRequired": {
            "major": 3,
            "minor": 20
        },
        "configurePresets": [
            {
                "name": "build",
                "displayName": "Build for NRF5340 DK NRF5340 application MCU Non Secure",
                "generator": "Ninja",
                "binaryDir": "${sourceDir}/build",
                "cacheVariables": {
                    "NCS_TOOLCHAIN_VERSION": "NONE",
                    "BOARD": "nrf5340dk_nrf5340_cpuapp_ns",
                    "APP_DIR": "${sourceDir}/",
                    "CACHED_CONF_FILE": "${sourceDir}/prj.conf",
                    "blinky_NCS_RUNNER_HEX": "C:/vision/nrf/apps/blinky/build/merged.hex",
                    "CONFIG_DEBUG_OPTIMIZATIONS": "y",
                    "CONFIG_DEBUG_THREAD_INFO": "y"
                }
            }
        ]
    }
Reply
  • Sucess!! 

      

    and here is the config for future reference for others

    {
        "version": 2,
        "cmakeMinimumRequired": {
            "major": 3,
            "minor": 20
        },
        "configurePresets": [
            {
                "name": "build",
                "displayName": "Build for NRF5340 DK NRF5340 application MCU Non Secure",
                "generator": "Ninja",
                "binaryDir": "${sourceDir}/build",
                "cacheVariables": {
                    "NCS_TOOLCHAIN_VERSION": "NONE",
                    "BOARD": "nrf5340dk_nrf5340_cpuapp_ns",
                    "APP_DIR": "${sourceDir}/",
                    "CACHED_CONF_FILE": "${sourceDir}/prj.conf",
                    "blinky_NCS_RUNNER_HEX": "C:/vision/nrf/apps/blinky/build/merged.hex",
                    "CONFIG_DEBUG_OPTIMIZATIONS": "y",
                    "CONFIG_DEBUG_THREAD_INFO": "y"
                }
            }
        ]
    }
Children
No Data
Related