aboutsummaryrefslogtreecommitdiff
path: root/tests/stm32
Commit message (Collapse)AuthorAgeFilesLines
...
* stm32/sdmmc: add support for multiple block reads and writes.Oliver2025-04-181-2/+18
|
* refactor to reduce code duplicationAnton Lazarev2025-03-311-2/+2
|
* Statically allocate task pools on stable Rust.Dario Nieuwenhuis2025-03-281-1/+1
| | | | | | Thanks @0e4ef622 for the awesome idea of how to do it and the first implementation. Co-Authored-By: Matthew Tran <[email protected]>
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-278-68/+74
|
* stm32/hash: remove DMA generic param.Dario Nieuwenhuis2025-03-251-2/+1
|
* stm32/dac: remove DMA generic params.Dario Nieuwenhuis2025-03-252-4/+2
|
* chore: prepare embassy-net releaseUlf Lilleengen2025-02-141-1/+1
|
* stm32/eth: rename PHY->Phy, GenericSMI -> GenericPhy. Remove unneeded unsafes.Dario Nieuwenhuis2025-01-261-4/+3
| | | | | We shouldn't use `unsafe` to mark merely "dangerous" actions, only actions that actually cause UB.
* Merge pull request #3795 from nikvoid/stm32-phy-addr-detectionDario Nieuwenhuis2025-01-261-1/+1
|\ | | | | | | STM32: Option to detect Ethernet PHY address automatically
| * stm32: change all examples and tests to use GenericSMI::new_auto().Dario Nieuwenhuis2025-01-261-1/+1
| |
* | Merge pull request #3781 from markus-k/stm32g0-hsisysdivDario Nieuwenhuis2025-01-171-1/+3
|\ \ | | | | | | | | | stm32/rcc: add HSISYS support for g0
| * | tests/stm32: fix test for g0 hsi sys_divMarkus Kasten2025-01-171-1/+3
| | |
* | | chore: bump embassy-sync versionUlf Lilleengen2025-01-151-1/+1
| |/ |/| | | | | Prepare version 0.6.2 for release
* | Update doc projects deps, don't use patch.crates-ioDario Nieuwenhuis2025-01-151-1/+1
|/
* Release embassy-stm32 v0.2.0Dario Nieuwenhuis2025-01-101-1/+1
|
* Fix search-and-replacabilityDániel Buga2025-01-051-2/+2
|
* Prepare embassy-net 0.6Dániel Buga2025-01-051-1/+1
|
* Prepare new embassy-time-*driver, embassy-executor, embassy-timeDániel Buga2024-12-221-2/+2
|
* Make `integrated-timers` the default, remove Cargo feature.Dario Nieuwenhuis2024-12-151-1/+1
|
* net: release v0.5.0Dario Nieuwenhuis2024-11-281-1/+1
|
* Bump sync version (#3562)Dániel Buga2024-11-221-1/+1
| | | | | | | * Bump sync version * Use old embassy-sync in rp bluetooth example * Downgrade update to minor
* Release embassy-executor 0.6.3.Dario Nieuwenhuis2024-11-121-1/+1
|
* Prep executor 0.6.2Dániel Buga2024-11-061-1/+1
|
* Release embassy-executor v0.6.1, embassy-executor-macros v0.6.1Dario Nieuwenhuis2024-10-211-1/+1
|
* tests/stm32: add uart async and blocking flush test.Dario Nieuwenhuis2024-10-142-0/+24
|
* tests: remove deprecated -Cinline-threshold.Dario Nieuwenhuis2024-10-141-1/+0
|
* Update nighlty, fix warnings.Dario Nieuwenhuis2024-10-141-2/+1
| | | | Fixes #2599
* stm32/tests: test spi u8 and u16 word sizes.Dario Nieuwenhuis2024-09-232-74/+140
|
* net: refactor to simplify lifetimes/generics.Dario Nieuwenhuis2024-09-161-6/+5
|
* [UCPD] Add support for non-SOP packetsSjoerd Simons2024-08-181-2/+2
| | | | | | | | Allow capturing (and distinguishing) non-SOP packets as well. The default configuration will just configure SOP packets. For ease of use the default receive function signature is unchanged as for PD sinks (which is likely the common usage) just SOP is enough so no need to differentiate.
* Simplify construction of StackResources::new()Martin Liska2024-08-081-6/+1
|
* Add H7 dual core to common and run fmtDion Dokter2024-08-051-2/+2
|
* Fix testsDion Dokter2024-08-0523-23/+41
|
* prepare release embassy-executorUlf Lilleengen2024-08-051-1/+1
|
* Prepare embassy-time releaseUlf Lilleengen2024-08-051-1/+1
|
* stm32 adc: introduce blocking_readAndres Vahter2024-07-031-2/+2
|
* stm32/gpio: refactor AfTypeJan Špaček2024-06-161-2/+2
|
* stm32: update stm32-metapac, fixes memory.x for many families.Dario Nieuwenhuis2024-06-121-8/+4
|
* prepare for embassy-time 0.3.1 releaseUlf Lilleengen2024-06-041-1/+1
|
* stm32/spi: fix blocking_write on nosck spi.Dario Nieuwenhuis2024-06-032-26/+15
| | | | Fixes #2902.
* Remove more BXCAN generics.Corey Schuhen2024-06-023-11/+3
|
* stm32/spi: test zero-length transfers in more cases.Dario Nieuwenhuis2024-05-312-1/+13
|
* stm32/spi: restrict txonly_nosck to SPIv1, it hangs in other versions.Dario Nieuwenhuis2024-05-313-45/+91
|
* stm32/spi: add blocking rxonly test.Dario Nieuwenhuis2024-05-311-7/+25
|
* stm32/spi: fix spiv1 rxonly hanging.Dario Nieuwenhuis2024-05-312-59/+43
|
* Fix all check-cfg errors in the entire repo.Dario Nieuwenhuis2024-05-311-1/+1
| | | | the main ci.sh now passes if running with nightly.
* Remove generics for BXCAN.Corey Schuhen2024-05-301-2/+2
|
* Merge pull request #3007 from liarokapisv/spi_v3-fix-rxDario Nieuwenhuis2024-05-301-5/+60
|\ | | | | | | Add proper rxonly support for spi_v3 and force tx dma stream requirem…
| * add spi_dma rx-only testAlexandros Liarokapis2024-05-281-5/+60
| |
* | Merge pull request #3012 from cschuhen/feature/fdcan_no_genericsDario Nieuwenhuis2024-05-303-9/+12
|\ \ | | | | | | | | | Remove generic argument for STM32 FDCAN.