aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application
Commit message (Collapse)AuthorAgeFilesLines
...
| * Cleaned up some doc and memory layouthuntc2023-01-043-2/+6
| | | | | | | | The memory layout of the s140 crept into a number of memory files, which can cause confusion.
* | embassy-boot (rp): Add WatchdogFlashkalkyl2023-01-031-0/+7
|/
* feat: embassy-boot for rp2040Ulf Lilleengen2022-12-027-0/+198
| | | | | | | Add embassy-boot support for RP2040, with examples for the Raspberry Pi Pico. Co-authored-by: Mathias Koch <[email protected]>
* Bump defmt-rtt to 0.4Dario Nieuwenhuis2022-11-298-8/+8
|
* all Cargo.toml: Add license to all crate Cargo.toml fileschrysn2022-10-078-0/+8
| | | | Closes: https://github.com/embassy-rs/embassy/issues/1002
* Remove flash lock/unlock public API from stm32 flash, and perform the ↵Mathias2022-09-307-7/+7
| | | | unlocking and locking automatically on erase and write operations
* Use firmware writer in stm32{f7, h7} example appUlf Lilleengen2022-09-262-17/+17
| | | | | The new FirmwareWriter is useful in particular for these architectures due to the large erase sector size.
* Update Rust nightly.Dario Nieuwenhuis2022-09-222-2/+0
| | | | Removes feature(generic_associated_types)
* Merge #939bors[bot]2022-09-047-7/+7
|\ | | | | | | | | | | | | | | 939: time: add more tick rates, use 1mhz as default. r=Dirbaio a=Dirbaio Co-authored-by: Dario Nieuwenhuis <[email protected]>
| * time: add more tick rates, use 1mhz as default.Dario Nieuwenhuis2022-09-027-7/+7
| |
* | Remove generic const expressions from embassy-bootUlf Lilleengen2022-09-0210-27/+39
|/ | | | | | | | | * Remove the need for generic const expressions and use buffers provided in the flash config. * Extend embedded-storage traits to simplify generics. * Document all public APIs * Add toplevel README * Expose AlignedBuffer type for convenience. * Update examples
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-228-8/+8
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-1824-34/+42
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-1716-32/+41
|
* Update to critical-section 1.0, atomic-polyfill 1.0Dario Nieuwenhuis2022-08-178-8/+8
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-2924-50/+58
|
* Use correct chip family name for exampleUlf Lilleengen2022-07-051-1/+1
|
* Fix RAM origin copy paste from nrfUlf Lilleengen2022-06-296-6/+6
|
* Move bootloader main to examplesUlf Lilleengen2022-06-2461-0/+1514
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.