Skip to content

Commit

Permalink
Rename to rp2040-selfdebug
Browse files Browse the repository at this point in the history
  • Loading branch information
KoviRobi committed Dec 23, 2023
1 parent c902d8e commit 79ea54f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "rp-selfdebug"
name = "rp2040-selfdebug"
version = "0.1.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion examples/minimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static mut USB_BUS: Option<UsbBusAllocator<UsbBus>> = 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<CmsisDap<UsbBus, 64>> = None;
Expand Down
2 changes: 1 addition & 1 deletion examples/pico_blinky.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static mut USB_SERIAL: Option<SerialPort<UsbBus>> = 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<CmsisDap<UsbBus, 64>> = None;
Expand Down

0 comments on commit 79ea54f

Please sign in to comment.