| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Deprecate *recv* in favor of *receive* | Ruben De Smet | 2023-08-22 | 1 | -2/+2 |
| | | |||||
| * | Set frequency in stm32 SPI examples | bofh | 2023-07-31 | 1 | -1/+5 |
| | | |||||
| * | Fix formatting | bofh | 2023-07-30 | 1 | -9/+1 |
| | | |||||
| * | Fix stm32 SPI examples | bofh | 2023-07-30 | 1 | -2/+0 |
| | | |||||
| * | examples: use nicer InterrupExt to set irq priority in multprio. | Dario Nieuwenhuis | 2023-06-09 | 1 | -9/+5 |
| | | |||||
| * | Fix examples | Rasmus Melchior Jacobsen | 2023-05-25 | 1 | -5/+5 |
| | | |||||
| * | 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/+2 |
| | | |||||
| * | Align examples | Rasmus Melchior Jacobsen | 2023-05-25 | 1 | -6/+6 |
| | | |||||
| * | Align examples | Rasmus Melchior Jacobsen | 2023-05-25 | 1 | -3/+2 |
| | | |||||
| * | stm32: move to bind_interrupts | xoviat | 2023-05-24 | 2 | -6/+12 |
| | | | | | disable lora functionality for now | ||||
| * | Align flash examples | Rasmus Melchior Jacobsen | 2023-04-05 | 1 | -1/+1 |
| | | |||||
| * | executor: add Pender, rework Cargo features. | Dario Nieuwenhuis | 2023-04-03 | 1 | -1/+1 |
| | | | | | | | | | | This introduces a `Pender` struct with enum cases for thread-mode, interrupt-mode and custom callback executors. This avoids calls through function pointers when using only the thread or interrupt executors. Faster, and friendlier to `cargo-call-stack`. `embassy-executor` now has `arch-xxx` Cargo features to select the arch and to enable the builtin executors (thread and interrupt). | ||||
| * | cortex-m/executor: don't use the owned interrupts system. | Dario Nieuwenhuis | 2023-02-28 | 1 | -13/+23 |
| | | | | | Preparation for #1224. | ||||
| * | usb: unify ControlHandler+DeviceStateHandler, route all control requests to ↵ | Dario Nieuwenhuis | 2023-02-08 | 1 | -1/+0 |
| | | | | | | | | | all handlers. - Allows classes to handle vendor requests. - Allows classes to use a single handler for multiple interfaces. - Allows classes to access the other events (previously only `reset` was available). | ||||
| * | stm32: Add support for read_until_idle on UART | Guillaume MICHEL | 2022-10-26 | 1 | -1/+3 |
| | | |||||
| * | 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 | ||||
| * | usb: move classes into the `embassy-usb` crate. | Dario Nieuwenhuis | 2022-09-26 | 1 | -1/+1 |
| | | |||||
| * | Replace futures::future::join -> embassy_futures::join::join. | Dario Nieuwenhuis | 2022-09-22 | 1 | -1/+1 |
| | | |||||
| * | sync: flatten module structure. | Dario Nieuwenhuis | 2022-08-22 | 1 | -1/+1 |
| | | |||||
| * | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | 2022-08-22 | 1 | -2/+2 |
| | | |||||
| * | Remove Forever, switch to static_cell. | Dario Nieuwenhuis | 2022-08-22 | 1 | -7/+7 |
| | | |||||
| * | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | 2022-08-18 | 9 | -13/+13 |
| | | |||||
| * | examples Remove the `fn config()` idiom. | Dario Nieuwenhuis | 2022-08-17 | 2 | -14/+6 |
| | | | | | | It was only useful for doing #[embassy_executor::main(config = "config()")]`. Now that it's gone, it makes more sense to build the config in main directly. | ||||
| * | Remove HAL initialization from #[embassy::main] macro. | Dario Nieuwenhuis | 2022-08-17 | 8 | -18/+20 |
| | | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 9 | -29/+29 |
| | | |||||
| * | embassy-stm32: Simplify time | Grant Miller | 2022-07-10 | 1 | -5/+5 |
| | | | | | | | | | | | - Remove unused `MilliSeconds`, `MicroSeconds`, and `NanoSeconds` types - Remove `Bps`, `KiloHertz`, and `MegaHertz` types that were only used for converting to `Hertz` - Replace all instances of `impl Into<Hertz>` with `Hertz` - Add `hz`, `khz`, and `mhz` methods to `Hertz`, as well as free function shortcuts - Remove `U32Ext` extension trait | ||||
| * | Run rustfmt. | Dario Nieuwenhuis | 2022-06-12 | 10 | -57/+27 |
| | | |||||
| * | Merge #806 | bors[bot] | 2022-06-12 | 1 | -2/+2 |
| |\ | | | | | | | | | | | | | | | | | | | 806: Add embassy-cortex-m crate. r=Dirbaio a=Dirbaio - Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`. Co-authored-by: Dario Nieuwenhuis <[email protected]> | ||||
| | * | Add embassy-cortex-m crate. | Dario Nieuwenhuis | 2022-06-12 | 1 | -2/+2 |
| | | | | | | | | | | | | | - Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`. | ||||
| * | | Rename channel to mpmc | huntc | 2022-06-12 | 1 | -1/+1 |
| |/ | | | | I've renamed the channel module for the MPMC as mpmc. There was a previous debate about this, but I feel that the strategy here avoids importing `channel::channel`. The change leaves `signal::Signal`, but I think that's ok. It is all a bit subjective of course. The bottom line for me is that I really like the term mpmc - it means something to me and aligns with broader naming e.g. in Tokio. | ||||
| * | stm32: add USB driver. | Dario Nieuwenhuis | 2022-06-07 | 1 | -0/+116 |
| | | |||||
| * | Add support for F3 flash | Matous Hybl | 2022-05-06 | 2 | -1/+44 |
| | | |||||
| * | executor: fix unsoundness in InterruptExecutor::start. | Dario Nieuwenhuis | 2022-04-25 | 1 | -6/+4 |
| | | | | | | | | The initial closure is not actually called in the interrupt, so this is illegally sending non-Send futures to the interrupt. Remove the closure, and return a SendSpawner instead. | ||||
| * | Simpler Channel. | Dario Nieuwenhuis | 2022-04-06 | 1 | -35/+24 |
| | | | | | | | | - Allow initializing in a static, without Forever. - Remove ability to close, since in embedded enviromnents channels usually live forever and don't get closed. - Remove MPSC restriction, it's MPMC now. Rename "mpsc" to "channel". - `Sender` and `Receiver` are still available if you want to enforce a piece of code only has send/receive access, but are optional: you can send/receive directly into the Channel if you want. | ||||
| * | Use embassy/defmt-timestamp-uptime in all examples. | Dario Nieuwenhuis | 2022-04-02 | 9 | -43/+25 |
| | | |||||
| * | Improve logic for processing button events | Cristian Eigel | 2022-02-16 | 1 | -15/+25 |
| | | |||||
| * | blocking_mutex: refactor to work on stable. No GATs, and can be constructed ↵ | Dario Nieuwenhuis | 2022-02-12 | 1 | -4/+7 |
| | | | | | in const. | ||||
| * | Add button_events example for stm32f3 | Cristian Eigel | 2022-02-11 | 1 | -0/+163 |
| | | |||||
| * | Port multiprio example to stm32f3 and stm32f4 platforms | Cristian Eigel | 2022-02-10 | 1 | -0/+144 |
| | | |||||
| * | Support unstable-trait feature for stm32 | Ulf Lilleengen | 2022-01-26 | 1 | -2/+1 |
| | | |||||
| * | stm32/usart: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 1 | -1/+0 |
| | | |||||
| * | stm32/exti: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 1 | -1/+0 |
| | | |||||
| * | stm32/gpio: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 2 | -9/+7 |
| | | |||||
| * | [examples] Add examples for STM32F3 | VasanthakumarV | 2021-12-13 | 7 | -0/+210 |
