cortex-m-quickstart icon indicating copy to clipboard operation
cortex-m-quickstart copied to clipboard

Template to develop bare metal applications for Cortex-M microcontrollers

Results 23 cortex-m-quickstart issues
Sort by recently updated
recently updated
newest added

README.md contains links to files named `LICENSE-APACHE` and `LICENSE-MIT`. Neither file is present in the source tree. This makes it impossible to correctly use the MIT license as the copyright...

At the moment, cortex-m-quickstart generates a Cargo.toml that includes a dependency on panic-semihosting version 0.3.0 This leads to an error when building: ``` Compiling panic-semihosting v0.3.0 error[E0557]: feature has been...

I'm getting started with a `ATSAML10xxxx` series project that uses Cortex M23 (ARM v8 baseline) Since I'm new to Rust development (but already an experienced embedded developer), I've been following...

I update follwing files for using STM32L476 - Cargo.toml ```rust [dependencies.stm32l4] features = ["stm32l4x6", "rt"] version = "0.11.0" ``` - config ``` [build] # Pick ONE of these compilation targets...

I'm currently preparing a PR to migrate the Embedded Rust Book from OpenOCD / semihosting to probe-rs / RTT. Would it be okay to replace the openocd config and semihosting...

Would it be possible for someone with experience in such, to add some examples of adding unit testing and possibly integration testing to a project like this? Maybe even using...

### STR - Uncomment the first `monitor tpiu` line in .gdbinit. ``` diff # # send captured ITM to the file itm.fifo # # (the microcontroller SWO pin must be...

I am trying to run the sample code on my LPCXpresso55S69 board. My goal is just to print "in main" on my terminal through main function. I am using following...

It's easy to miss updating the `[target.thumbv7em-none-eabihf]` section's header, and the `runner` configuration won't work, and the resulting output isn't very insightful: ``` qemu-arm: target/thumbv7em-none-eabihf/release/app: Error mapping file: Invalid argument...

https://docs.rust-embedded.org/cortex-m-quickstart/cortex_m_quickstart/ While following step 2: (**334** build dependencies to avoid running `git clone` later… *yikes*) ``` $ cargo clone cortex-m-quickstart --vers 0.3.4 error: unexpected argument '--vers' found tip: a similar...

bug