aboutsummaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* Release embassy-sync v0.2.0Dario Nieuwenhuis2023-04-134-4/+4
|
* Move linker flags to build script.Roy Buitenhuis2023-04-112-4/+8
|
* RustfmtRoy Buitenhuis2023-04-111-1/+1
|
* Add empty test binary for riscvRoy Buitenhuis2023-04-114-0/+85
|
* stm32/test: add C0 hil tests.Dario Nieuwenhuis2023-04-117-2/+20
|
* stm32/test: add h5 hil tests.Dario Nieuwenhuis2023-04-106-16/+35
|
* Update embedded-hal crates.Dario Nieuwenhuis2023-04-062-4/+4
|
* Merge #1321bors[bot]2023-04-043-3/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | 1321: executor: add Pender, rework Cargo features. r=Dirbaio a=Dirbaio 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). Co-authored-by: Dario Nieuwenhuis <[email protected]>
| * executor: add Pender, rework Cargo features.Dario Nieuwenhuis2023-04-033-3/+3
| | | | | | | | | | | | | | | | | | 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).
* | Add HIL test for timer on nrfUlf Lilleengen2023-04-031-0/+25
|/
* fix: spi transfer bug and additions to testLachezar Lechev2023-03-261-3/+23
| | | | Signed-off-by: Lachezar Lechev <[email protected]>
* chore: add spi_async tests for uneven buffersLachezar Lechev2023-03-241-4/+40
| | | | Signed-off-by: Lachezar Lechev <[email protected]>
* Add HIL test for into_buffered uart on embassy-rpMathias2023-03-141-0/+54
|
* nrf/uart: switch to new interrupt binding.Dario Nieuwenhuis2023-03-062-7/+16
|
* nrf/buffered_uarte: add HIL tests.Dario Nieuwenhuis2023-03-047-0/+464
|
* Refactor after reviewkalkyl2022-12-131-0/+47
|
* Feature gate critical-section-implkalkyl2022-12-101-1/+1
|
* Select critical-section in testskalkyl2022-12-101-1/+1
|
* rp: add OutputOpenDrain input test.Dario Nieuwenhuis2022-12-061-3/+25
|
* Bump defmt-rtt to 0.4Dario Nieuwenhuis2022-11-292-2/+2
|
* rp/uart: use lockfree ringbuffer.Dario Nieuwenhuis2022-11-251-8/+5
| | | | This gets rid of another PeripheralMutex usage.
* Switch to async-fn-in-traitDario Nieuwenhuis2022-11-252-3/+3
|
* Add delay to flash test to allow time to parse RTT headerMathias2022-10-271-0/+7
|
* Remove unused imports from testMathias2022-10-271-1/+0
|
* Rebase on masterMathias2022-10-274-19/+52
|\
| * stm32: Add support for read_until_idle on UARTGuillaume MICHEL2022-10-262-16/+49
| |
| * Update Rust nightly.Dario Nieuwenhuis2022-10-262-3/+3
| |
* | Add flash example & flash HIL testMathias2022-10-262-0/+49
|/
* all Cargo.toml: Add license to all crate Cargo.toml fileschrysn2022-10-072-0/+2
| | | | Closes: https://github.com/embassy-rs/embassy/issues/1002
* Update embedded-hal versions and explicitly pinUlf Lilleengen2022-09-292-4/+4
|
* Fix bufferedUart read and write testsMathias2022-09-271-4/+5
|
* Extend buffered-uart test to transmit 32 bytesMathias2022-09-271-2/+8
|
* rp: set correct teleprobe target for rpi-pico tests.Dario Nieuwenhuis2022-09-261-1/+1
|
* Add HIL test for bufferedUartMathias2022-09-262-0/+38
|
* rp: enable time-driver in Cargo.toml instead of ci.shDario Nieuwenhuis2022-09-261-1/+1
|
* Replace futures::future::join -> embassy_futures::join::join.Dario Nieuwenhuis2022-09-222-1/+2
|
* time: add more tick rates, use 1mhz as default.Dario Nieuwenhuis2022-09-021-1/+1
|
* Cleanup examplesHenrik Alsér2022-09-012-4/+4
|
* Add HIL testsHenrik Alsér2022-09-012-0/+56
|
* Add HIL tests of DMA & UART, and correctly set DREQ for uart DMAMathias2022-08-263-0/+105
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-222-2/+2
|
* tests/stm32: add lpuart test on stm32wb55Dario Nieuwenhuis2022-08-202-14/+2
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-1810-12/+14
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-178-22/+22
|
* Update to critical-section 1.0, atomic-polyfill 1.0Dario Nieuwenhuis2022-08-172-2/+2
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-2910-20/+22
|
* Add embedded_hal_async support for embassy-rpDaniel Bevenius2022-07-142-0/+149
| | | | | This commit adds support for embedded-hal-async to the Embassy Raspberry PI crate.
* Merge #851bors[bot]2022-07-101-1/+105
|\ | | | | | | | | | | | | | | | | 851: Gpio dynamic flex r=Dirbaio a=AntoineMugnier Add Flex GPIO type for embassy-stm32 as it is the case for embassy-nrf. Co-authored-by: [email protected] <[email protected]>
| * rustfmt on previously edited files[email protected]2022-07-101-14/+13
| |
| * forgotten file[email protected]2022-07-081-1/+1
| |