aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h7/src/bin
Commit message (Collapse)AuthorAgeFilesLines
* sdmmc: factor out sd and add sdio modxoviat2025-12-111-1/+2
|
* Merge pull request #5018 from xoviat/sdioxoviat2025-12-101-6/+8
|\ | | | | | | stm32: refactor sdmmc module
| * sdmmc: refactor sd card creationxoviat2025-12-091-6/+8
| |
* | allow again to set nodiv independently of master clock dividerRoman Lim2025-12-091-1/+1
|/
* Reverted adding AnyBinding, removed AnyChannel, removed ability for ↵WillaWillNot2025-11-221-6/+1
| | | | ExtiInput to accept AnyPin and AnyChannel arguments, added ExtiPin trait for all pins which is lost on converstion to AnyPin and contains type-level ExtiChannel information
* Fixed broken examples/formatting reported by CIWillaWillNot2025-11-211-2/+1
|
* Updated documentation, fixed EXTI definition issues with chips that have ↵WillaWillNot2025-11-211-2/+14
| | | | touch sensing, updated examples, added generation of convenience method to bind_interrupts for easier type erasure
* Merge pull request #4910 from fbrozovic/h7-async-flashxoviat2025-11-191-0/+84
|\ | | | | | | stm32: implement async flash
| * stm32: add async flash example for h7Filip Brozovic2025-11-181-0/+84
| |
* | Add new{_with_phy}, new_mii{_with_phy}datdenkikniet2025-11-143-18/+18
|/
* adc: remove sample_time from structxoviat2025-11-101-4/+2
|
* feat: stm32 spi driver slave modeCristian Milatinov2025-11-043-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add SPI slave constructors Fix SPI slave constructors Fix embedded hal async trait One more constructor fix Set SSM bit in SPI driver according to CommunicationMode Fix embedded_hal_async trait to be generic for both master and slave Fix I2S driver to use async master SPI Forgot import from spi mode Fix CommunicationMode associated const conditionals Duplicate doc for CommunicationMode const Add missing nss argument Fix existing SPI tests not compiling Fix stm32h7rs examples not compiling Fix failing stm32l4 example Fix stm32h7 example Fix stm32h7 spi_bdma example Fix stm32h7 spi example Fix stm32f4 example docs: added entry in changelog.md fix: spi_v3 vals mismatch + rise_fall_speed renamed to gpio_speed fix: added spi_v6 conditional compilation feature fix: use if_afio macro in slave constructors fix: add missing trait bound fix: if_afio for cs pin trait fix: changelog message fix: broken rebase
* rtc: use consistent api between stop and non-stopxoviat2025-11-041-2/+2
|
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-0620-23/+23
|
* Edition 2024.Dario Nieuwenhuis2025-10-061-2/+2
|
* stm32: add config to MCO to control the drive strength.Daniel Nilsson2025-10-012-4/+17
|
* stm32/sai: update for new metapac, simplify cfgs.Dario Nieuwenhuis2025-09-051-68/+4
|
* executor: return error when creating the spawntoken, not when spawning.Dario Nieuwenhuis2025-08-2913-17/+17
|
* rustfmtSüha Ünüvar2025-08-083-27/+3
|
* i2c examplesSüha Ünüvar2025-08-083-6/+0
|
* stm32: adapt examples to timer API changesmelvdl2025-06-272-6/+6
|
* fix cijrmoulton2025-06-101-2/+2
|
* merge new embassy changesjrmoulton2025-06-1013-86/+78
|\
| * Add rand-core v0.9 support.Dario Nieuwenhuis2025-05-183-3/+0
| | | | | | | | Co-Authored-By: Aurélien Jacobs <[email protected]>
| * Merge pull request #4170 from ↵Ulf Lilleengen2025-05-093-4/+4
| |\ | | | | | | | | | | | | yutannihilation/chore/fix-unsafe-attribute-rust2024 chore: Wrap `link_section` attribute in example code with `unsafe()` for compatibility with Rust 2024 edition
| | * chore: Wrap link_section attribute with unsafeHiroaki Yutani2025-05-063-4/+4
| | |
| * | fix h7 sai example start sequencevinsynth2025-05-051-1/+3
| |/
| * refactor to reduce code duplicationAnton Lazarev2025-03-311-1/+1
| |
| * Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-273-11/+10
| |
| * stm32/dac: remove DMA generic params.Dario Nieuwenhuis2025-03-252-5/+5
| |
| * stm32/eth: rename PHY->Phy, GenericSMI -> GenericPhy. Remove unneeded unsafes.Dario Nieuwenhuis2025-01-263-12/+9
| | | | | | | | | | We shouldn't use `unsafe` to mark merely "dangerous" actions, only actions that actually cause UB.
| * stm32: change all examples and tests to use GenericSMI::new_auto().Dario Nieuwenhuis2025-01-263-3/+3
| |
| * Remove manual settings of `composite_with_iads=true`Eekle2024-12-241-7/+0
| |
| * fix: unwrap sai receiver `start()`elagil2024-11-161-1/+1
| |
| * fix(SAI): disallow start without initial writeelagil2024-11-161-1/+0
| |
| * Merge pull request #3317 from GrantM11235/simplepwmchannelUlf Lilleengen2024-10-231-10/+9
| |\ | | | | | | | | | embassy-stm32: Add SimplePwmChannel
| | * last oops I promiseGrant Miller2024-09-061-3/+2
| | |
| | * Update examplesGrant Miller2024-09-061-9/+9
| | |
| * | executor: fix unsoundness due to `impl Trait`, improve macro error handling. ↵Dario Nieuwenhuis2024-10-181-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#3425) * executor-macros: don't parse function bodies. * executor-macros: refactor for better recovery and ide-friendliness on errors. * executor-macros: disallow `impl Trait` in task arguments. Fixes #3420 * Fix example using `impl Trait` in tasks.
| * | Update nighlty, fix warnings.Dario Nieuwenhuis2024-10-142-7/+10
| | | | | | | | | | | | Fixes #2599
| * | Update smoltcp, embedded-nal-async to use the `core::net` IP addr types.Dario Nieuwenhuis2024-10-072-2/+6
| | |
| * | net: refactor to simplify lifetimes/generics.Dario Nieuwenhuis2024-09-163-21/+18
| |/
* / fix examplesjrmoulton2024-08-131-1/+1
|/
* examples: ensure at least 3 sockets to avoid running out (DHCP, DNS, the user's)Dario Nieuwenhuis2024-08-073-18/+3
|
* Fixed to reserve as much space as it uses.Dickless2024-07-071-1/+1
|
* [#2905 #2904] Replaced static raw array with GroundedArrayCellDickless2024-07-061-3/+9
|
* cargo +nightly fmtDickless2024-07-051-3/+1
|
* rustfmtDickless2024-07-051-2/+1
|
* add SAI exampleDickless2024-07-051-0/+189
|
* stm32 adc: introduce blocking_readAndres Vahter2024-07-032-3/+3
|