From b5bfc0081f758df45f932eb90925bea7621aca65 Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Sat, 5 Jun 2021 08:07:04 +0200 Subject: [PATCH] Rename application --- .vscode/launch.json | 24 +----------------------- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 24 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 4f1b6d9..3502bc5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,25 +1,6 @@ { - /* - * Requires the Rust Language Server (RLS) and Cortex-Debug extensions - * https://marketplace.visualstudio.com/items?itemName=rust-lang.rust - * https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug - */ "version": "0.2.0", "configurations": [ - { - "type": "cortex-debug", - "request": "launch", - "name": "Debug (QEMU)", - "servertype": "qemu", - "cwd": "${workspaceRoot}", - "preLaunchTask": "Cargo Build (debug)", - "runToMain": true, - "executable": "./target/thumbv7m-none-eabi/debug/app", - /* Run `cargo build --example hello` and uncomment this line to run semi-hosting example */ - //"executable": "./target/thumbv7m-none-eabi/debug/examples/hello", - "cpu": "cortex-m3", - "machine": "lm3s6965evb", - }, { "type": "cortex-debug", "request": "launch", @@ -28,15 +9,12 @@ "cwd": "${workspaceRoot}", "preLaunchTask": "Cargo Build (debug)", "runToMain": true, - "executable": "./target/thumbv7em-none-eabihf/debug/app", - /* Run `cargo build --example itm` and uncomment this line to run itm example */ - // "executable": "./target/thumbv7em-none-eabihf/debug/examples/itm", + "executable": "./target/thumbv7em-none-eabihf/debug/nrf52-dk-app", "device": "NRF52832", "configFiles": [ "/usr/local/share/openocd/scripts/interface/jlink.cfg", "/usr/local/share/openocd/scripts/board/nordic_nrf52_dk.cfg" ], - // "svdFile": "${workspaceRoot}/.vscode/STM32F303.svd", "swoConfig": { "enabled": true, "cpuFrequency": 8000000, diff --git a/Cargo.toml b/Cargo.toml index 03f1793..992ab6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "app" +name = "nrf52-dk-app" version = "0.1.0" authors = ["Andres O. Vela"] edition = "2018"