File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,22 +11,21 @@ version = "0.2.0"
1111# Useful Cortex-M specific functions (e.g. SysTick)
1212cortex-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
1716cortex-m-rt = " 0.7"
1817# The BIOS API we export to the OS
1918neotron-common-bios = { git = " https://github.com/Neotron-Compute/Neotron-Common-BIOS.git" }
2019# For time keeping/handling
2120embedded-time = " 0.12"
2221# For the RP2040 bootloader
23- rp2040-boot2 = " 0.1 "
22+ rp2040-boot2 = " 0.2 "
2423# For hardware abstraction traits
2524embedded-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
3130panic-probe = " 0.2"
3231# Fetches the BIOS version from git
@@ -64,6 +63,3 @@ codegen-units = 1
6463debug = true
6564# better optimizations
6665lto = true
67-
68- [patch .crates-io ]
69- rp2040-pac = { path = " /home/jonathan/Documents/rp-rs/rp2040-pac" }
Original file line number Diff line number Diff 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
8282const GIT_VERSION : & str = git_version ! ( ) ;
You can’t perform that action at this time.
0 commit comments