Skip to content

Commit 8dbaea7

Browse files
committed
Use published deps.
We'll change from the add_sio_fifo branch once the PR is merged.
1 parent 40e3e2e commit 8dbaea7

2 files changed

Lines changed: 5 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,21 @@ version = "0.2.0"
1111
# Useful Cortex-M specific functions (e.g. SysTick)
1212
cortex-m = "0.7"
1313
# The Raspberry Pi Pico HAL
14-
pico = { git = "https://github.com/rp-rs/rp-hal.git" }
15-
# pico = { path = "/home/jonathan/Documents/rp-rs/rp-hal/boards/pico" }
14+
pico = { git = "https://github.com/rp-rs/rp-hal.git", branch="add_sio_fifo" }
1615
# Cortex-M run-time (or start-up) code
1716
cortex-m-rt = "0.7"
1817
# The BIOS API we export to the OS
1918
neotron-common-bios = { git = "https://github.com/Neotron-Compute/Neotron-Common-BIOS.git" }
2019
# For time keeping/handling
2120
embedded-time = "0.12"
2221
# For the RP2040 bootloader
23-
rp2040-boot2 = "0.1"
22+
rp2040-boot2 = "0.2"
2423
# For hardware abstraction traits
2524
embedded-hal ="0.2"
2625
# Gives us formatted PC-side logging
27-
defmt = "0.2"
26+
defmt = "0.3"
2827
# Sends defmt logs to the SWD debugger
29-
defmt-rtt = "0.2"
28+
defmt-rtt = "0.3"
3029
# Send panics to the debugger
3130
panic-probe = "0.2"
3231
# Fetches the BIOS version from git
@@ -64,6 +63,3 @@ codegen-units = 1
6463
debug = true
6564
# better optimizations
6665
lto = true
67-
68-
[patch.crates-io]
69-
rp2040-pac = { path = "/home/jonathan/Documents/rp-rs/rp2040-pac" }

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ use pico::{
7676
/// See `memory.x` for a definition of the `.boot2` section.
7777
#[link_section = ".boot2"]
7878
#[used]
79-
pub static BOOT2: [u8; 256] = rp2040_boot2::BOOT_LOADER;
79+
pub static BOOT2: [u8; 256] = rp2040_boot2::BOOT_LOADER_W25Q080;
8080

8181
/// BIOS version
8282
const GIT_VERSION: &str = git_version!();

0 commit comments

Comments
 (0)