aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h5/src
Commit message (Collapse)AuthorAgeFilesLines
* adc: type-erase regs instancexoviat2025-12-061-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 branch 'main' into smaxoviat2025-11-182-12/+9
|\
| * low_power: misc cleanups and allow main macroxoviat2025-11-161-10/+2
| |
| * fix async adc for h5 and othersxoviat2025-11-131-2/+7
| | | | | | | | closes #4882.
* | Add new{_with_phy}, new_mii{_with_phy}datdenkikniet2025-11-141-6/+6
|/
* adc: remove sample_time from structxoviat2025-11-101-4/+2
|
* stm32: add backup sram modxoviat2025-11-061-0/+31
|
* stm32/stop: move stop_with_rtc into initxoviat2025-11-041-5/+0
|
* rustfmtxoviat2025-11-031-1/+0
|
* low_power: update api to allow reconfigxoviat2025-11-031-2/+0
|
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-068-12/+12
|
* stm32: add config to MCO to control the drive strength.Daniel Nilsson2025-10-011-0/+29
|
* style: formattingAdrian Figueroa2025-09-051-1/+0
|
* feat: SAI exampleAdrian Figueroa2025-09-051-0/+53
|
* Fix examplesdiondokter2025-08-291-2/+2
|
* executor: return error when creating the spawntoken, not when spawning.Dario Nieuwenhuis2025-08-296-12/+12
|
* stm32/adc/v3: allow DMA reads to loop through enabled channelsGabriel Smith2025-08-221-0/+94
| | | | | Tested on an STM32H533RE. Documentation of other chips has been reviewed, but not extensively.
* i2c examplesSüha Ünüvar2025-08-081-2/+0
|
* Add rand-core v0.9 support.Dario Nieuwenhuis2025-05-181-1/+0
| | | | Co-Authored-By: Aurélien Jacobs <[email protected]>
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-272-5/+5
|
* 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.
* stm32: change all examples and tests to use GenericSMI::new_auto().Dario Nieuwenhuis2025-01-261-1/+1
|
* stm32: Implement reads of DTS peripheralGabriel Smith2025-01-041-0/+75
| | | | Only PCLK-driven operation is supported.
* chore: clean up stm32h5 ucpdelagil2025-01-031-3/+4
|
* Remove manual settings of `composite_with_iads=true`Eekle2024-12-242-14/+0
|
* fix: add docstring for target platformelagil2024-12-221-0/+2
|
* feat: stm32h5 UCPD exampleelagil2024-12-221-0/+90
|
* Remove use of static mut.Dario Nieuwenhuis2024-12-161-8/+11
|
* feat: change SOF timer to input captureelagil2024-11-241-19/+30
|
* feat(stm32h5): add usb audio exampleelagil2024-11-241-0/+367
|
* STM32H5xx ADC (#3557)Gabriel Smith2024-11-211-0/+59
| | | | | * stm32: Update STM32 data source * stm32h5: Add ADC example
* net: refactor to simplify lifetimes/generics.Dario Nieuwenhuis2024-09-161-7/+6
|
* examples: ensure at least 3 sockets to avoid running out (DHCP, DNS, the user's)Dario Nieuwenhuis2024-08-071-7/+2
|
* stm32/usart: remove instance generic paramsJan Špaček2024-05-231-2/+1
|
* fixed: example loops crashing after 256 passesPeter Kövesdi2024-04-291-1/+1
|
* low power for h5eZio Pan2024-04-281-0/+71
|
* Reduce use of the full `futures` crate.Dario Nieuwenhuis2024-04-261-1/+1
|
* examples: stm32: can: fix buildTorin Cooper-Bennun2024-04-221-1/+1
|
* stm32/usart: remove DMA generic params.Dario Nieuwenhuis2024-04-163-24/+5
|
* Merge pull request #2697 from eZioPan/stm32-cordicDario Nieuwenhuis2024-04-041-0/+78
|\ | | | | | | stm32 CORDIC driver
| * stm32 CORDIC: re-design APIeZio Pan2024-03-231-8/+51
| |
| * stm32 CORDIC: add exampleeZio Pan2024-03-231-0/+35
| |
* | CAN: Unify API's between BXCAN and FDCAN. Use Envelope for all read methods ↵Corey Schuhen2024-03-281-5/+7
|/ | | | instead of a tuple sometimes.
* usb: remove device_descriptor buffer, store bytes in UsbDevice.inner insteadAdam Greig2024-03-231-2/+0
|
* stm32: autogenerate mux config for all chips.Dario Nieuwenhuis2024-03-012-6/+3
|
* Remove the OperatingMode typestatesCorey Schuhen2024-02-181-2/+1
| | | | | | Instead have two explcit types(without the mode generic arg)types: - One for config - One for all operating modes
* Port FDCAN HAL to use PAC directly instead of fdcan crate.Corey Schuhen2024-02-171-33/+56
| | | | | | - Provide separate FDCAN capable and Classic CAN API's - Don't use fdcan crate dep anymore - Provide embedded-can traits.