| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | tests/rp: enable run-from-ram. | Dario Nieuwenhuis | 2023-06-06 | 1 | -1/+1 | |
| | | | | | Otherwise the flash test is flaky because it attempts to use boot2. | |||||
| * | ci: run HIL tests in parallel. | Dario Nieuwenhuis | 2023-05-30 | 18 | -2/+34 | |
| | | ||||||
| * | Add HIL test | kalkyl | 2023-05-16 | 1 | -0/+9 | |
| | | ||||||
| * | rp: remove take!, add bind_interrupts! | pennae | 2023-05-15 | 3 | -20/+32 | |
| | | ||||||
| * | Merge #1423 | bors[bot] | 2023-05-02 | 1 | -0/+63 | |
| |\ | | | | | | | | | | | | | | | 1423: rp: fix gpio InputFuture and inefficiencies r=pennae a=pennae InputFuture could not wait for edges without breaking due to a broken From impl, but even if the impl had been correct it would not have worked correctly because raw edge interrupts are sticky and must be cleared from software. also replace critical sections with atomic accesses, and do nvic setup only once. Co-authored-by: pennae <[email protected]> | |||||
| | * | rp/gpio: set up gpio interrupts only once | pennae | 2023-05-02 | 1 | -0/+63 | |
| | | | | | | | | | | | | | doing this setup work repeatedly, on every wait, is unnecessary. with nothing ever disabling the interrupt it is sufficient to enable it once during device init and never touch it again. | |||||
| * | | rp: remove leftovers from #1414 | pennae | 2023-05-02 | 1 | -4/+0 | |
| |/ | | | | forgot to remove these when they were no longer necessary or useful. oops. | |||||
| * | rp/uart: report errors from dma receive | pennae | 2023-05-01 | 1 | -10/+228 | |
| | | ||||||
| * | rp/uart: report errors from buffered uart | pennae | 2023-05-01 | 1 | -20/+229 | |
| | | | | | | | | | | this reports errors at the same location the blocking uart would, which works out to being mostly exact (except in the case of overruns, where one extra character is dropped). this is actually easier than going nuclear in the case of errors and nuking both the buffer contents and the rx fifo, both of which are things we'd have to do in addition to what's added here, and neither are needed for correctness. | |||||
| * | tests/rp: test error conditions for uart | pennae | 2023-05-01 | 1 | -11/+148 | |
| | | ||||||
| * | tests/rp: fix buffered uart test | pennae | 2023-05-01 | 1 | -3/+3 | |
| | | | | | | | the rp uart receive fifo is 32 entries deep, so the 31 byte test data fits into it without needing any buffering. extend to 48 bytes to fill the entire fifo and the 16 byte test buffer. | |||||
| * | Bump versions preparing for -macros and -executor release | Ulf Lilleengen | 2023-04-27 | 1 | -1/+1 | |
| | | ||||||
| * | rp: add PWM api | pennae | 2023-04-23 | 1 | -0/+142 | |
| | | ||||||
| * | rp: hook up softfloat rom intrinsics | pennae | 2023-04-19 | 3 | -3/+58 | |
| | | | | | | | rp-hal has done this very well already, so we'll just copy their entire impl again. only div.rs needed some massaging because our sio access works a little differently, everything else worked as is. | |||||
| * | Release embassy-sync v0.2.0 | Dario Nieuwenhuis | 2023-04-13 | 1 | -1/+1 | |
| | | ||||||
| * | Update embedded-hal crates. | Dario Nieuwenhuis | 2023-04-06 | 1 | -2/+2 | |
| | | ||||||
| * | 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). | |||||
| * | fix: spi transfer bug and additions to test | Lachezar Lechev | 2023-03-26 | 1 | -3/+23 | |
| | | | | | Signed-off-by: Lachezar Lechev <[email protected]> | |||||
| * | chore: add spi_async tests for uneven buffers | Lachezar Lechev | 2023-03-24 | 1 | -4/+40 | |
| | | | | | Signed-off-by: Lachezar Lechev <[email protected]> | |||||
| * | Add HIL test for into_buffered uart on embassy-rp | Mathias | 2023-03-14 | 1 | -0/+54 | |
| | | ||||||
| * | Refactor after review | kalkyl | 2022-12-13 | 1 | -0/+47 | |
| | | ||||||
| * | Feature gate critical-section-impl | kalkyl | 2022-12-10 | 1 | -1/+1 | |
| | | ||||||
| * | Select critical-section in tests | kalkyl | 2022-12-10 | 1 | -1/+1 | |
| | | ||||||
| * | rp: add OutputOpenDrain input test. | Dario Nieuwenhuis | 2022-12-06 | 1 | -3/+25 | |
| | | ||||||
| * | Bump defmt-rtt to 0.4 | Dario Nieuwenhuis | 2022-11-29 | 1 | -1/+1 | |
| | | ||||||
| * | rp/uart: use lockfree ringbuffer. | Dario Nieuwenhuis | 2022-11-25 | 1 | -8/+5 | |
| | | | | | This gets rid of another PeripheralMutex usage. | |||||
| * | Switch to async-fn-in-trait | Dario Nieuwenhuis | 2022-11-25 | 1 | -2/+2 | |
| | | ||||||
| * | Add delay to flash test to allow time to parse RTT header | Mathias | 2022-10-27 | 1 | -0/+7 | |
| | | ||||||
| * | Remove unused imports from test | Mathias | 2022-10-27 | 1 | -1/+0 | |
| | | ||||||
| * | Rebase on master | Mathias | 2022-10-27 | 1 | -2/+2 | |
| |\ | ||||||
| | * | Update Rust nightly. | Dario Nieuwenhuis | 2022-10-26 | 1 | -2/+2 | |
| | | | ||||||
| * | | Add flash example & flash HIL test | Mathias | 2022-10-26 | 2 | -0/+49 | |
| |/ | ||||||
| * | 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 | |||||
| * | Update embedded-hal versions and explicitly pin | Ulf Lilleengen | 2022-09-29 | 1 | -2/+2 | |
| | | ||||||
| * | Fix bufferedUart read and write tests | Mathias | 2022-09-27 | 1 | -4/+5 | |
| | | ||||||
| * | Extend buffered-uart test to transmit 32 bytes | Mathias | 2022-09-27 | 1 | -2/+8 | |
| | | ||||||
| * | rp: set correct teleprobe target for rpi-pico tests. | Dario Nieuwenhuis | 2022-09-26 | 1 | -1/+1 | |
| | | ||||||
| * | Add HIL test for bufferedUart | Mathias | 2022-09-26 | 2 | -0/+38 | |
| | | ||||||
| * | rp: enable time-driver in Cargo.toml instead of ci.sh | Dario Nieuwenhuis | 2022-09-26 | 1 | -1/+1 | |
| | | ||||||
| * | Replace futures::future::join -> embassy_futures::join::join. | Dario Nieuwenhuis | 2022-09-22 | 2 | -1/+2 | |
| | | ||||||
| * | Cleanup examples | Henrik Alsér | 2022-09-01 | 2 | -4/+4 | |
| | | ||||||
| * | Add HIL tests | Henrik Alsér | 2022-09-01 | 2 | -0/+56 | |
| | | ||||||
| * | Add HIL tests of DMA & UART, and correctly set DREQ for uart DMA | Mathias | 2022-08-26 | 3 | -0/+105 | |
| | | ||||||
| * | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | 2022-08-22 | 1 | -1/+1 | |
| | | ||||||
| * | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | 2022-08-18 | 3 | -4/+5 | |
| | | ||||||
| * | Remove HAL initialization from #[embassy::main] macro. | Dario Nieuwenhuis | 2022-08-17 | 2 | -4/+4 | |
| | | ||||||
| * | 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 | 3 | -6/+7 | |
| | | ||||||
| * | Add embedded_hal_async support for embassy-rp | Daniel Bevenius | 2022-07-14 | 2 | -0/+149 | |
| | | | | | | This commit adds support for embedded-hal-async to the Embassy Raspberry PI crate. | |||||
| * | rp: add GPIO HIL test. | Dario Nieuwenhuis | 2022-07-09 | 5 | -0/+531 | |
