Rename application
This commit is contained in:
parent
abaf98de01
commit
b5bfc0081f
24
.vscode/launch.json
vendored
24
.vscode/launch.json
vendored
@ -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",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"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",
|
"type": "cortex-debug",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
@ -28,15 +9,12 @@
|
|||||||
"cwd": "${workspaceRoot}",
|
"cwd": "${workspaceRoot}",
|
||||||
"preLaunchTask": "Cargo Build (debug)",
|
"preLaunchTask": "Cargo Build (debug)",
|
||||||
"runToMain": true,
|
"runToMain": true,
|
||||||
"executable": "./target/thumbv7em-none-eabihf/debug/app",
|
"executable": "./target/thumbv7em-none-eabihf/debug/nrf52-dk-app",
|
||||||
/* Run `cargo build --example itm` and uncomment this line to run itm example */
|
|
||||||
// "executable": "./target/thumbv7em-none-eabihf/debug/examples/itm",
|
|
||||||
"device": "NRF52832",
|
"device": "NRF52832",
|
||||||
"configFiles": [
|
"configFiles": [
|
||||||
"/usr/local/share/openocd/scripts/interface/jlink.cfg",
|
"/usr/local/share/openocd/scripts/interface/jlink.cfg",
|
||||||
"/usr/local/share/openocd/scripts/board/nordic_nrf52_dk.cfg"
|
"/usr/local/share/openocd/scripts/board/nordic_nrf52_dk.cfg"
|
||||||
],
|
],
|
||||||
// "svdFile": "${workspaceRoot}/.vscode/STM32F303.svd",
|
|
||||||
"swoConfig": {
|
"swoConfig": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"cpuFrequency": 8000000,
|
"cpuFrequency": 8000000,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "app"
|
name = "nrf52-dk-app"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Andres O. Vela"]
|
authors = ["Andres O. Vela"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
Loading…
Reference in New Issue
Block a user