| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -1/+1 |
| | | |||||
| * | Edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 2 | -4/+4 |
| | | |||||
| * | chore: prepare embassy crate releases | Ulf Lilleengen | 2025-08-26 | 1 | -1/+1 |
| | | |||||
| * | Load all crates in the graph, honor the "publish" flag to prevent publishing ↵ | Dario Nieuwenhuis | 2025-08-25 | 1 | -0/+6 |
| | | | | | examples/tests. | ||||
| * | fix: prepare embassy-sync 0.7.1 release | Ulf Lilleengen | 2025-08-12 | 1 | -1/+1 |
| | | | | | * Add newtype for moved type to preserve API compat | ||||
| * | embassy-sync: bump to 0.7.0 | Matt Johnston | 2025-05-22 | 1 | -1/+1 |
| | | |||||
| * | Update defmt dependencies | Yuri Astrakhan | 2025-05-18 | 1 | -2/+2 |
| | | |||||
| * | chore: bump embassy-sync version | Ulf Lilleengen | 2025-01-15 | 1 | -1/+1 |
| | | | | | Prepare version 0.6.2 for release | ||||
| * | Bump sync version (#3562) | Dániel Buga | 2024-11-22 | 1 | -1/+1 |
| | | | | | | | | * Bump sync version * Use old embassy-sync in rp bluetooth example * Downgrade update to minor | ||||
| * | stm32/boot: update linker file in example | Krzysztof Królczyk | 2024-06-10 | 1 | -1/+1 |
| | | | | | Signed-off-by: Krzysztof Królczyk <[email protected]> | ||||
| * | Fix all check-cfg errors in the entire repo. | Dario Nieuwenhuis | 2024-05-31 | 1 | -1/+1 |
| | | | | | the main ci.sh now passes if running with nightly. | ||||
| * | Prepare for embassy-sync 0.6.0 release | Ulf Lilleengen | 2024-05-29 | 1 | -1/+1 |
| | | |||||
| * | feat: enhance bootloader for multiple flash support | Badr Bouslikhin | 2024-02-06 | 1 | -1/+1 |
| | | |||||
| * | Flatten embassy-boot dir tree | Dario Nieuwenhuis | 2024-01-11 | 1 | -1/+1 |
| | | |||||
| * | update release version in examples and other crates | Scott Mabin | 2023-12-04 | 1 | -1/+1 |
| | | |||||
| * | update embedded-storage{,-async}, remove patch. | Dario Nieuwenhuis | 2023-12-04 | 1 | -1/+1 |
| | | |||||
| * | Remove nightly and unstable-traits features in preparation for 1.75. | Dario Nieuwenhuis | 2023-11-29 | 1 | -1/+1 |
| | | |||||
| * | Prepare embassy-net 0.2.1 and embassy-sync 0.4.0 | Dániel Buga | 2023-10-31 | 1 | -1/+1 |
| | | |||||
| * | Fix bootloader application examples | Dániel Buga | 2023-09-02 | 1 | -1/+1 |
| | | |||||
| * | boot: release flash after prepare and refactor api | Ulf Lilleengen | 2023-08-11 | 1 | -3/+1 |
| | | | | | | | This refactoring of the chip specific bootloader creates the internal boot instance and aligned buffer in the prepare stage, so that they are automatically dropped after. This unlocks a use case where peripherals owning the flash need to be Drop'ed before load() happens. | ||||
| * | Align examples | Rasmus Melchior Jacobsen | 2023-05-30 | 2 | -6/+14 |
| | | |||||
| * | ci: fix nrf, rp tests. | Dario Nieuwenhuis | 2023-05-29 | 1 | -2/+2 |
| | | |||||
| * | Let Flash<Async/Blocking> be a thing | Rasmus Melchior Jacobsen | 2023-05-25 | 1 | -1/+1 |
| | | |||||
| * | Align with new bind_interrupt | Rasmus Melchior Jacobsen | 2023-05-25 | 1 | -2/+1 |
| | | |||||
| * | enable inline-asm feature for cortex-m in examples | pennae | 2023-04-18 | 1 | -1/+1 |
| | | | | | | | inline assembly is supported since rust 1.59, we're way past that. enabling this makes the compiled code more compact, and on rp2040 even decreses memory usage by not needing thunks in sram. | ||||
| * | Align stm32 bootloader example | Rasmus Melchior Jacobsen | 2023-04-05 | 1 | -3/+4 |
| | | |||||
| * | Align examples with bootloader changes | Rasmus Melchior Jacobsen | 2023-04-04 | 1 | -3/+3 |
| | | |||||
| * | Bump embedded-storage-async to 0.4 | Mehmet Ali Anil | 2023-03-06 | 1 | -1/+1 |
| | | |||||
| * | Bump defmt-rtt to 0.4 | Dario Nieuwenhuis | 2022-11-29 | 1 | -1/+1 |
| | | |||||
| * | all Cargo.toml: Add license to all crate Cargo.toml files | chrysn | 2022-10-07 | 1 | -0/+1 |
| | | | | | Closes: https://github.com/embassy-rs/embassy/issues/1002 | ||||
| * | Remove flash lock/unlock public API from stm32 flash, and perform the ↵ | Mathias | 2022-09-30 | 1 | -1/+1 |
| | | | | | unlocking and locking automatically on erase and write operations | ||||
| * | Remove BootFlash borrow | Ulf Lilleengen | 2022-09-20 | 1 | -4/+3 |
| | | | | | | | | Compiler will infer a different lifetime for BootFlash than for the borrowed flash, which makes it require more type annotations than if it was just owning the type. Since it doesn't really matter if it owns or borrows in practical use, change it to own so that it simplifies usage. | ||||
| * | Remove generic const expressions from embassy-boot | Ulf Lilleengen | 2022-09-02 | 1 | -3/+5 |
| | | | | | | | | | | * 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 | ||||
| * | Update to critical-section 1.0, atomic-polyfill 1.0 | Dario Nieuwenhuis | 2022-08-17 | 1 | -1/+1 |
| | | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 1 | -1/+0 |
| | | |||||
| * | Fix RAM origin copy paste from nrf | Ulf Lilleengen | 2022-06-29 | 1 | -1/+1 |
| | | |||||
| * | Add build.rs to detect armv6 | Ulf Lilleengen | 2022-06-27 | 1 | -5/+0 |
| | | |||||
| * | Move bootloader main to examples | Ulf Lilleengen | 2022-06-24 | 5 | -0/+164 |
| This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead. | |||||
