0

我尝试在 Raspberry Pi Pico 上运行 Rust 代码。一个简单的“blink”示例应用程序成功(看起来)使用:

cargo build --release --target=thumbv6m-none-eabi

我已经安装了elf2uf2-rs

cargo install elf2uf2-rs

然后我尝试使用以下命令在 Raspberry Pi Pico 上运行 Blink 应用程序:

cargo run --release --target=thumbv6m-none-eabi

但此消息失败,其中“rp2”是我的二进制文件的名称:

target/thumbv6m-none-eabi/release/rp2: cannot execute binary file

关于什么可能是错误的任何建议?

这是我的Cargo.toml

[package]
name = "rp2"
version = "0.1.0"
edition = "2021"

[dependencies]
rp2040-hal = "0.3.0"
cortex-m = "0.7.2"
embedded-hal = { version = "0.2.5", features = ["unproven"] }
eh1_0_alpha = { version="=1.0.0-alpha.6", package="embedded-hal", optional=true }
embedded-time = "0.12.0"
panic-halt = "0.2.0"
rp2040-boot2 = "0.2.0"
cortex-m-rt = "0.7"
rp-pico = "0.2.0"

[dev-dependencies]
cortex-m-rt = "0.7"
panic-halt = "0.2.0"
rp2040-boot2 = "0.2.0"

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"

更新

我现在添加了一个.cargo/config.toml包含以下内容的文件:

# Choose a default "cargo run" tool.
# probe-run is recommended if you have a debugger
# elf2uf2-rs loads firmware over USB when the rp2040 is in boot mode
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
# runner = "probe-run --chip RP2040"
runner = "elf2uf2-rs -d"

rustflags = [
    "-C", "linker=flip-link",
    "-C", "link-arg=--nmagic",
    "-C", "link-arg=-Tlink.x",
    "-C", "link-arg=-Tdefmt.x",

    # Code-size optimizations.
    #   trap unreachable can save a lot of space, but requires nightly compiler.
    #   uncomment the next line if you wish to enable it
    # "-Z", "trap-unreachable=no",
    "-C", "inline-threshold=5",
    "-C", "no-vectorize-loops",
]

[build]
target = "thumbv6m-none-eabi"

以及memory.x包含以下内容的文件:

MEMORY {
    BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100
    FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100
    RAM   : ORIGIN = 0x20000000, LENGTH = 256K
}

EXTERN(BOOT2_FIRMWARE)

SECTIONS {
    /* ### Boot loader */
    .boot2 ORIGIN(BOOT2) :
    {
        KEEP(*(.boot2));
    } > BOOT2
} INSERT BEFORE .text;

但随后该cargo build --release命令失败并出现此错误:

error: linking with `rust-lld` failed: exit status: 1
...
= note: rust-lld: error: cannot find linker script defmt.x

我使用带有 M1 Apple Silicon 芯片的 MacBook,这可能是AArch64 系统下的相关问题 rust-lld 问题

4

1 回答 1

0

我现在已经在 Raspberry Pi Pico 上运行了代码。

第一个问题是我没有创建.cargo/config.toml包含使用elf2uf2“运行”指令的文件:

[target.'cfg(all(target_arch = "arm", target_os = "none"))']
runner = "elf2uf2-rs -d"

另一个问题是,我.cargo/config.toml还包含对我系统上没有的defmt的引用,因此当注释掉这一行(在 下rustflags)时,编译的代码使用以下命令cargo build --release在 Raspberry Pi Pico 上运行cargo run --release

# "-C", "link-arg=-Tdefmt.x",
于 2022-01-02T09:17:23.587 回答