From dcb76386d1f7dee1bc69d1204610e1bb13bad7d8 Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Sun, 24 Mar 2024 23:15:40 +0000 Subject: [PATCH] Well I guess I can build for lpc1114 --- flake.nix | 2 +- rust-embedded/lpc1114-test/.cargo/config.toml | 9 + rust-embedded/lpc1114-test/.gitignore | 1 + rust-embedded/lpc1114-test/Cargo.lock | 276 ++++++++++++++++++ rust-embedded/lpc1114-test/Cargo.toml | 23 ++ rust-embedded/lpc1114-test/Embed.toml | 82 ++++++ rust-embedded/lpc1114-test/README.md | 65 +++++ rust-embedded/lpc1114-test/memory.x | 7 + rust-embedded/lpc1114-test/src/main.rs | 12 + 9 files changed, 476 insertions(+), 1 deletion(-) create mode 100644 rust-embedded/lpc1114-test/.cargo/config.toml create mode 100644 rust-embedded/lpc1114-test/.gitignore create mode 100644 rust-embedded/lpc1114-test/Cargo.lock create mode 100644 rust-embedded/lpc1114-test/Cargo.toml create mode 100644 rust-embedded/lpc1114-test/Embed.toml create mode 100644 rust-embedded/lpc1114-test/README.md create mode 100644 rust-embedded/lpc1114-test/memory.x create mode 100644 rust-embedded/lpc1114-test/src/main.rs diff --git a/flake.nix b/flake.nix index dc0d5e4..24c2a41 100644 --- a/flake.nix +++ b/flake.nix @@ -57,7 +57,7 @@ }; in with pkgs; mkShell { - packages = [ rust cargo-binutils probe-rs cargo-generate ]; + packages = [ rust cargo-binutils probe-rs cargo-generate gdb ]; RUST_SRC_PATH = "${rust}/lib/rustlib/src/rust/library"; }; diff --git a/rust-embedded/lpc1114-test/.cargo/config.toml b/rust-embedded/lpc1114-test/.cargo/config.toml new file mode 100644 index 0000000..996b04a --- /dev/null +++ b/rust-embedded/lpc1114-test/.cargo/config.toml @@ -0,0 +1,9 @@ +[target.'cfg(all(target_arch = "arm", target_os = "none"))'] +runner = "probe-rs run --chip Cortex-M0" + +rustflags = [ + "-C", "link-arg=-Tlink.x", +] + +[build] +target = "thumbv6m-none-eabi" diff --git a/rust-embedded/lpc1114-test/.gitignore b/rust-embedded/lpc1114-test/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/rust-embedded/lpc1114-test/.gitignore @@ -0,0 +1 @@ +/target diff --git a/rust-embedded/lpc1114-test/Cargo.lock b/rust-embedded/lpc1114-test/Cargo.lock new file mode 100644 index 0000000..5a087f4 --- /dev/null +++ b/rust-embedded/lpc1114-test/Cargo.lock @@ -0,0 +1,276 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aligned" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a785a543aea40f5e4e2e93bb2655d31bc21bb391fff65697150973e383f16bb" +dependencies = [ + "as-slice", +] + +[[package]] +name = "as-slice" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45403b49e3954a4b8428a0ac21a4b7afadccf92bfd96273f1a58cd4812496ae0" +dependencies = [ + "generic-array 0.12.4", + "generic-array 0.13.3", + "generic-array 0.14.7", + "stable_deref_trait", +] + +[[package]] +name = "bare-metal" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5deb64efa5bd81e31fcd1938615a6d98c82eafcbcd787162b6f63b91d6bac5b3" +dependencies = [ + "rustc_version", +] + +[[package]] +name = "bitfield" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46afbd2983a5d5a7bd740ccb198caf5b82f45c40c09c0eed36052d91cb92e719" + +[[package]] +name = "cortex-m" +version = "0.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9075300b07c6a56263b9b582c214d0ff037b00d45ec9fde1cc711490c56f1bb9" +dependencies = [ + "aligned", + "bare-metal", + "bitfield", + "cortex-m 0.7.7", + "volatile-register", +] + +[[package]] +name = "cortex-m" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ec610d8f49840a5b376c69663b6369e71f4b34484b9b2eb29fb918d92516cb9" +dependencies = [ + "bare-metal", + "bitfield", + "embedded-hal", + "volatile-register", +] + +[[package]] +name = "cortex-m-rt" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee84e813d593101b1723e13ec38b6ab6abbdbaaa4546553f5395ed274079ddb1" +dependencies = [ + "cortex-m-rt-macros", +] + +[[package]] +name = "cortex-m-rt-macros" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f6f3e36f203cfedbc78b357fb28730aa2c6dc1ab060ee5c2405e843988d3c7" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "cortex-m-semihosting" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c23234600452033cc77e4b761e740e02d2c4168e11dbf36ab14a0f58973592b0" +dependencies = [ + "cortex-m 0.7.7", +] + +[[package]] +name = "embedded-hal" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35949884794ad573cf46071e41c9b60efb0cb311e3ca01f7af807af1debc66ff" +dependencies = [ + "nb 0.1.3", + "void", +] + +[[package]] +name = "generic-array" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" +dependencies = [ + "typenum", +] + +[[package]] +name = "generic-array" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f797e67af32588215eaaab8327027ee8e71b9dd0b2b26996aedf20c030fce309" +dependencies = [ + "typenum", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "lpc1114-test" +version = "0.1.0" +dependencies = [ + "cortex-m 0.7.7", + "cortex-m-rt", + "cortex-m-semihosting", + "lpc11xx", + "panic-semihosting", +] + +[[package]] +name = "lpc11xx" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c878f9fadd93bddb1a8255b0620bb32d909f178b1340d5d684ac0a6749a749a" +dependencies = [ + "bare-metal", + "cortex-m 0.6.7", + "vcell", +] + +[[package]] +name = "nb" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "801d31da0513b6ec5214e9bf433a77966320625a37860f910be265be6e18d06f" +dependencies = [ + "nb 1.1.0", +] + +[[package]] +name = "nb" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" + +[[package]] +name = "panic-semihosting" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee8a3e1233d9073d76a870223512ce4eeea43c067a94a445c13bd6d792d7b1ab" +dependencies = [ + "cortex-m 0.7.7", + "cortex-m-semihosting", +] + +[[package]] +name = "proc-macro2" +version = "1.0.79" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +dependencies = [ + "semver", +] + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +dependencies = [ + "semver-parser", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "typenum" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "vcell" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77439c1b53d2303b20d9459b1ade71a83c716e3f9c34f3228c00e6f185d6c002" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" + +[[package]] +name = "volatile-register" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de437e2a6208b014ab52972a27e59b33fa2920d3e00fe05026167a1c509d19cc" +dependencies = [ + "vcell", +] diff --git a/rust-embedded/lpc1114-test/Cargo.toml b/rust-embedded/lpc1114-test/Cargo.toml new file mode 100644 index 0000000..50534b1 --- /dev/null +++ b/rust-embedded/lpc1114-test/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "lpc1114-test" +version = "0.1.0" +authors = ["Artemis Tosini "] +edition = "2021" + +[dependencies] +cortex-m = "0.7" +cortex-m-rt = "0.7" +cortex-m-semihosting = "0.5" +lpc11xx = "0.2" +panic-semihosting = "0.6" + +# Set the default for dependencies. +[profile.dev.package."*"] +opt-level = "s" + +[profile.release] +codegen-units = 1 +incremental = false +debug = true +lto = true +opt-level = "s" diff --git a/rust-embedded/lpc1114-test/Embed.toml b/rust-embedded/lpc1114-test/Embed.toml new file mode 100644 index 0000000..e8d3632 --- /dev/null +++ b/rust-embedded/lpc1114-test/Embed.toml @@ -0,0 +1,82 @@ +[default.probe] +# USB vendor ID +# usb_vid = "1337" +# USB product ID +# usb_pid = "1337" +# Serial number +# serial = "12345678" +# The protocol to be used for communicating with the target. +protocol = "Swd" +# The speed in kHz of the data link to the target. +# speed = 1337 + +[default.flashing] +# Whether or not the target should be flashed. +enabled = true +# Whether or not the target should be halted after reset. +# DEPRECATED, moved to reset section +halt_afterwards = false +# Whether or not bytes erased but not rewritten with data from the ELF +# should be restored with their contents before erasing. +restore_unwritten_bytes = false +# The path where an SVG of the assembled flash layout should be written to. +# flash_layout_output_path = "out.svg" +# Triggers a full chip erase instead of a page by page erase. +do_chip_erase = false + +[default.reset] +# Whether or not the target should be reset. +# When flashing is enabled as well, the target will be reset after flashing. +enabled = true +# Whether or not the target should be halted after reset. +halt_afterwards = false + +[default.general] +# The chip name of the chip to be debugged. +chip = "Cortex-M0" +# A list of chip descriptions to be loaded during runtime. +chip_descriptions = [] +# The default log level to be used. Possible values are one of: +# "OFF", "ERROR", "WARN", "INFO", "DEBUG", "TRACE" +log_level = "WARN" +# Use this flag to assert the nreset & ntrst pins during attaching the probe to the chip. +connect_under_reset = false + +[default.rtt] +# Whether or not an RTTUI should be opened after flashing. +enabled = false +# How the target handles RTT outputs that won't fit in the buffer. This can be +# overridden per-channel. If left unset, the firmware will determine the default +# for each RTT up channel. +# NoBlockSkip - Skip writing the data completely if it doesn't fit in its +# entirety. +# NoBlockTrim - Write as much as possible of the data and ignore the rest. +# BlockIfFull - Spin until the host reads data. Can result in app freezing. +# +# up_mode = "BlockIfFull" + +# A list of channel associations to be displayed. If left empty, all channels are displayed. +# up, down (Optional) - RTT channel numbers +# name (Optional) - String to be displayed in the RTTUI tab +# up_mode (Optional) - RTT channel specific as described above +# format (Required) - How to interpret data from target firmware. One of: +# String - Directly show output from the target +# Defmt - Format output on the host, see https://defmt.ferrous-systems.com/ +# BinaryLE - Display as raw hex +channels = [ + # { up = 0, down = 0, name = "name", up_mode = "BlockIfFull", format = "Defmt" }, +] +# The duration in ms for which the logger should retry to attach to RTT. +timeout = 3000 +# Whether timestamps in the RTTUI are enabled +show_timestamps = true +# Whether to save rtt history buffer on exit. +log_enabled = false +# Where to save rtt history buffer relative to manifest path. +log_path = "./logs" + +[default.gdb] +# Whether or not a GDB server should be opened after flashing. +enabled = false +# The connection string in host:port format wher the GDB server will open a socket. +gdb_connection_string = "127.0.0.1:1337" diff --git a/rust-embedded/lpc1114-test/README.md b/rust-embedded/lpc1114-test/README.md new file mode 100644 index 0000000..eb6e03b --- /dev/null +++ b/rust-embedded/lpc1114-test/README.md @@ -0,0 +1,65 @@ +# `stm32-template` + +> A template for building applications for STM32 microcontrollers + +## Dependencies + +To build embedded programs using this template you'll need: + +- The `cargo generate` subcommand. [Installation + instructions](https://github.com/cargo-generate/cargo-generate#installation). +``` console +$ cargo install cargo-generate +``` + +- Flash and run/debug tools: +``` console +$ cargo install probe-rs --features cli +``` + +- `rust-std` components (pre-compiled `core` crate) for the ARM Cortex-M + targets. Run: + +``` console +$ rustup target add thumbv6m-none-eabi thumbv7m-none-eabi thumbv7em-none-eabi thumbv7em-none-eabihf +``` + +## Instantiate the template. + +1. Run and enter project name +``` console +$ cargo generate --git https://github.com/burrbull/stm32-template/ + Project Name: app +``` + +2. Specify **chip product name** and answer on several other guide questions. + +3. Your program is ready to compile: +``` console +$ cargo build --release +``` + +## Flash and run/debug + +You can flash your firmware using one of those tools: + +- `cargo flash --release` — just flash +- `cargo run --release` — flash and run using `probe-rs run` runner or `probe-run` runner (deprecated) which you can set in `.cargo/config.toml` +- `cargo embed --release` — multifunctional tool for flash and debug + +You also can debug your firmware on device from VS Code with [probe-rs](https://probe.rs/docs/tools/vscode/) extention or with `probe-rs gdb` command. +You will need SVD specification for your chip for this. You can load patched SVD files [here](https://stm32-rs.github.io/stm32-rs/). + +## Contribution + +Unless you explicitly state otherwise, any contribution intentionally submitted +for inclusion in the work by you, as defined in the Apache-2.0 license, shall be +dual licensed as above, without any additional terms or conditions. + +## Code of Conduct + +Contribution to this crate is organized under the terms of the [Rust Code of +Conduct][CoC], the maintainer of this crate, promises +to intervene to uphold that code of conduct. + +[CoC]: https://www.rust-lang.org/policies/code-of-conduct diff --git a/rust-embedded/lpc1114-test/memory.x b/rust-embedded/lpc1114-test/memory.x new file mode 100644 index 0000000..e92a88e --- /dev/null +++ b/rust-embedded/lpc1114-test/memory.x @@ -0,0 +1,7 @@ +MEMORY +{ + FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 32K + RAM (rwx) : ORIGIN = 0x10000000, LENGTH = 4K +} + +_stack_start = ORIGIN(RAM) + LENGTH(RAM); diff --git a/rust-embedded/lpc1114-test/src/main.rs b/rust-embedded/lpc1114-test/src/main.rs new file mode 100644 index 0000000..b279eee --- /dev/null +++ b/rust-embedded/lpc1114-test/src/main.rs @@ -0,0 +1,12 @@ +#![no_main] +#![no_std] + +// Halt on panic +use panic_semihosting as _; + +use cortex_m_rt::entry; + +#[entry] +fn main() -> ! { + loop {} +}