From 79ea54f552ff6bdad6deed60d5a3855979cdf0a0 Mon Sep 17 00:00:00 2001 From: Kovacsics Robert Date: Sat, 23 Dec 2023 13:39:55 +0000 Subject: [PATCH] Rename to rp2040-selfdebug --- Cargo.lock | 28 ++++++++++++++-------------- Cargo.toml | 2 +- examples/minimal.rs | 2 +- examples/pico_blinky.rs | 2 +- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b461c83..5eaeaba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -277,20 +277,6 @@ dependencies = [ "usb-device", ] -[[package]] -name = "rp-selfdebug" -version = "0.1.0" -dependencies = [ - "cc", - "cortex-m", - "cortex-m-rt", - "embedded-hal", - "panic-probe", - "rp-pico", - "usb-device", - "usbd-serial", -] - [[package]] name = "rp2040-boot2" version = "0.3.0" @@ -348,6 +334,20 @@ dependencies = [ "vcell", ] +[[package]] +name = "rp2040-selfdebug" +version = "0.1.0" +dependencies = [ + "cc", + "cortex-m", + "cortex-m-rt", + "embedded-hal", + "panic-probe", + "rp-pico", + "usb-device", + "usbd-serial", +] + [[package]] name = "rustc_version" version = "0.2.3" diff --git a/Cargo.toml b/Cargo.toml index 52fc3e1..35931d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "rp-selfdebug" +name = "rp2040-selfdebug" version = "0.1.0" edition = "2021" diff --git a/examples/minimal.rs b/examples/minimal.rs index fa15fe4..961d158 100644 --- a/examples/minimal.rs +++ b/examples/minimal.rs @@ -19,7 +19,7 @@ static mut USB_BUS: Option> = None; use panic_probe as _; -use rp_selfdebug::{dap_execute_command, dap_setup, CmsisDap}; +use rp2040_selfdebug::{dap_execute_command, dap_setup, CmsisDap}; /// The USB CMSIS-DAP Device Driver (shared with the interrupt). static mut USB_DAP: Option> = None; diff --git a/examples/pico_blinky.rs b/examples/pico_blinky.rs index 824b5bf..7a368fe 100644 --- a/examples/pico_blinky.rs +++ b/examples/pico_blinky.rs @@ -36,7 +36,7 @@ static mut USB_SERIAL: Option> = None; use panic_probe as _; -use rp_selfdebug::{dap_execute_command, dap_setup, CmsisDap}; +use rp2040_selfdebug::{dap_execute_command, dap_setup, CmsisDap}; /// The USB CMSIS-DAP Device Driver (shared with the interrupt). static mut USB_DAP: Option> = None;