| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | 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`. | |||||
| * | common/PeripheralMutex: remove unsafe API. (#802) | Dario Nieuwenhuis | 2022-06-09 | 1 | -2/+1 | |
| | | | | | | | Following the project's decision that "leak unsafe" APIs are not marked as "unsafe", update PeripheralMutex to accept non-'static state without unsafe. Fixes #801 | |||||
| * | examples/stm32*, tests/stm32: specify time-tick-32768hz | Will Glynn | 2022-05-31 | 1 | -1/+1 | |
| | | ||||||
| * | Simplify example | chemicstry | 2022-05-26 | 1 | -5/+3 | |
| | | ||||||
| * | Fix removed space | chemicstry | 2022-05-26 | 1 | -0/+1 | |
| | | ||||||
| * | Reimplement BufRead for BufferedUart | chemicstry | 2022-05-26 | 2 | -1/+39 | |
| | | ||||||
| * | Remove embassy_hal_common::usb. | Dario Nieuwenhuis | 2022-05-04 | 3 | -214/+1 | |
| | | | | | | | | | | | | The replacement is `embassy-usb`. There's a WIP driver for stm32 USBD in #709, there's no WIP driver for stm32 USB_OTG. This means we're left without USB_OTG support for now. Reason for removing is I'm going to soon remove `embassy::io`, and USB uses it. I don't want to spend time maintaining "dead" code that is going to be removed. Volunteers welcome, either to update old USB to the new IO, or write a USB_OTG driver fo the new USB. | |||||
| * | 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. | |||||
| * | Use embassy/defmt-timestamp-uptime in all examples. | Dario Nieuwenhuis | 2022-04-02 | 16 | -57/+40 | |
| | | ||||||
| * | Cleanup | chemicstry | 2022-03-16 | 1 | -1/+2 | |
| | | ||||||
| * | Cleanup | chemicstry | 2022-03-16 | 1 | -3/+0 | |
| | | ||||||
| * | Fix SDMMC v2 and add H7 example | chemicstry | 2022-03-16 | 1 | -14/+9 | |
| | | ||||||
| * | Use RCC frequency instead of config | chemicstry | 2022-03-16 | 1 | -6/+2 | |
| | | ||||||
| * | SDIO working on stm32f4 | chemicstry | 2022-03-16 | 2 | -0/+55 | |
| | | ||||||
| * | Update rust nightly, embedded-hal 1.0, embedded-hal-async. | Dario Nieuwenhuis | 2022-03-11 | 1 | -1/+1 | |
| | | ||||||
| * | [can] Do not use wildcard reexport for bxcan | Timo Kröger | 2022-03-05 | 1 | -2/+3 | |
| | | ||||||
| * | Merge #608 | bors[bot] | 2022-02-13 | 1 | -0/+26 | |
| |\ | | | | | | | | | | | | | | | | | 608: stm32f4: add adc + example r=Dirbaio a=ain101 Example tested on stm32f407vg Discovery Board. minimal adc: no vref, dma, complex sequence Co-authored-by: Frederik <[email protected]> | |||||
| | * | stm32f4: add adc + example | Frederik | 2022-02-10 | 1 | -0/+26 | |
| | | | | | | | | | | | Example tested on stm32f407vg Discovery Board. minimal adc: no vref, dma, complex sequence | |||||
| * | | stm32: add rust stable support | Dario Nieuwenhuis | 2022-02-12 | 1 | -1/+1 | |
| |/ | ||||||
| * | Port multiprio example to stm32f3 and stm32f4 platforms | Cristian Eigel | 2022-02-10 | 1 | -0/+144 | |
| | | ||||||
| * | Fix function name | chemicstry | 2022-02-09 | 1 | -1/+1 | |
| | | ||||||
| * | Merge USB FS and HS peripherals. Add ULPI. | chemicstry | 2022-02-09 | 3 | -3/+117 | |
| | | ||||||
| * | Add stm32 USB OTG peripherals | chemicstry | 2022-02-08 | 2 | -1/+103 | |
| | | ||||||
| * | traits: migrate Delay to embedded-hal 1.0+async, remove Rng and Flash. | Dario Nieuwenhuis | 2022-01-27 | 1 | -2/+1 | |
| | | ||||||
| * | stm32: add `time-driver-any` cargo feature that automatically picks one ↵ | Dario Nieuwenhuis | 2022-01-24 | 1 | -1/+1 | |
| | | | | | available timer. | |||||
| * | stm32/spi: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 2 | -4/+2 | |
| | | ||||||
| * | stm32/usart: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 2 | -5/+3 | |
| | | ||||||
| * | 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 | 3 | -12/+9 | |
| | | ||||||
| * | Make exti an optional feature | Ulf Lilleengen | 2022-01-12 | 1 | -1/+1 | |
| | | | | | | * Add embassy-stm32 build with exti * Add exti to examples | |||||
| * | examples: remove unused deps. | Dario Nieuwenhuis | 2021-11-29 | 1 | -1/+0 | |
| | | ||||||
| * | Remove unused deps | Dario Nieuwenhuis | 2021-11-15 | 1 | -1/+0 | |
| | | ||||||
| * | Adjust for bxcan API. | Bob McWhirter | 2021-11-15 | 1 | -3/+4 | |
| | | ||||||
| * | Adjust all examples to defmt 0.3. | Bob McWhirter | 2021-11-15 | 1 | -15/+5 | |
| | | ||||||
| * | Replace rustflags with build.rs extra-link-args. | Dario Nieuwenhuis | 2021-11-07 | 2 | -12/+5 | |
| | | | | | | | | | | | | | Rustflags apply to ALL the crates in the graph, while we only need them for the toplevel crate which is the only one getting linked. Rustflags are not equal for all crates, this caused cargo to re-build the same dependency crate multiple times uselessly. After this change, deps are reused more, making builds faster. Note that this only applies when sharing the target/ dir for multiple crates in the repo which is not the default. | |||||
| * | Update lots of deps | Dario Nieuwenhuis | 2021-09-11 | 1 | -8/+8 | |
| | | ||||||
| * | Remove trait_alias, allow(incomplete_features). | Dario Nieuwenhuis | 2021-09-03 | 9 | -18/+0 | |
| | | | | | trait_alias seems unused. no idea why it's there. | |||||
| * | stm32: move dbgmcu stuff to toplevel config setting, defaulting to true. | Dario Nieuwenhuis | 2021-08-19 | 9 | -41/+0 | |
| | | ||||||
| * | Update cortex-m-rt to v0.7 for stm32, rp. | Dario Nieuwenhuis | 2021-08-19 | 1 | -1/+1 | |
| | | ||||||
| * | bxcan: Fix the flaky CAN example | Timo Kröger | 2021-08-18 | 1 | -2/+15 | |
| | | ||||||
| * | bxcan: namechange "bxcan_v1" -> "can_bxcan" | Timo Kröger | 2021-08-18 | 1 | -1/+1 | |
| | | ||||||
| * | CAN support with bxcan crate | Timo Kröger | 2021-08-18 | 2 | -0/+40 | |
| | | ||||||
| * | stm32f4: Use unwrap! where possible | Ben Gamari | 2021-08-05 | 1 | -2/+2 | |
| | | ||||||
| * | examples: Consistently use unwrap! in favor of .unwrap() | Ben Gamari | 2021-08-05 | 4 | -11/+11 | |
| | | | | | | Unfortunately errors from `embedded_graphics` and `core` doesn't provide the necessary instances currently. | |||||
| * | stm32/time: add Cargo features to choose tim2/tim3 | Dario Nieuwenhuis | 2021-08-05 | 1 | -1/+1 | |
| | | ||||||
| * | time: replace dyn clock/alarm with a global Driver trait | Dario Nieuwenhuis | 2021-08-05 | 5 | -5/+1 | |
| | | ||||||
| * | Merge pull request #344 from bobmcwhirter/remove_builders | Dario Nieuwenhuis | 2021-08-04 | 1 | -6/+4 | |
| |\ | | | | | Remove builders from Config(s) and examples. | |||||
| | * | Grep fails me. | Bob McWhirter | 2021-08-04 | 1 | -2/+0 | |
| | | | ||||||
| | * | Remove more extra vars. | Bob McWhirter | 2021-08-04 | 1 | -4/+2 | |
| | | | ||||||
| | * | Remove builders from Config(s) and examples. | Bob McWhirter | 2021-08-04 | 1 | -1/+3 | |
| | | | ||||||
