aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32
Commit message (Expand)AuthorAgeFilesLines
...
| * | | fix: UCPD drop logicelagil2025-02-071-6/+11
| * | | set PLLI2SM and plli2s_src f423vinsynth2025-02-021-2/+2
| * | | set PLLI2S M and SRC for f4 chips which support itvinsynth2025-02-021-0/+5
| * | | stm32/eth: rename PHY->Phy, GenericSMI -> GenericPhy. Remove unneeded unsafes.Dario Nieuwenhuis2025-01-264-34/+32
| * | | Merge pull request #3795 from nikvoid/stm32-phy-addr-detectionDario Nieuwenhuis2025-01-261-0/+46
| |\ \ \
| | * | | split PHY constructor to `new` and `new_auto`nikvoid2025-01-231-4/+31
| | * | | run rustfmtnikvoid2025-01-221-2/+2
| | * | | remove cortex-m delaynikvoid2025-01-221-1/+0
| | * | | use `Delay` from `embassy-time` to wait for PHY responsenikvoid2025-01-221-6/+8
| | * | | Option to detect Ethernet PHY address automaticallynikvoid2025-01-221-2/+20
| | |/ /
| * | | Merge pull request #3812 from noracarmig/sai_v3_dmaDario Nieuwenhuis2025-01-262-6/+8
| |\ \ \
| | * | | Allow chips from L5 (sai_v3_2pdm) and H7 (sai_v3_4pdm) families to use extern...noracarmig2025-01-261-6/+6
| | * | | Reset complete count global variable on Dma configurenoracarmig2025-01-261-0/+2
| * | | | fix: STM32H5 UCPD receptionelagil2025-01-261-6/+14
| * | | | derive defmt::Format on pub struct/enum of stm32::rtcGeorges Palauqui2025-01-242-0/+4
| * | | | Merge pull request #3779 from algesten/fix/f107-rccDario Nieuwenhuis2025-01-242-5/+91
| |\ \ \ \ | | |/ / / | |/| | |
| | * | | Move PLL2/3 config to before PLLMartin Algesten2025-01-241-29/+31
| | * | | Fix init order of set_prediv1srcMartin Algesten2025-01-241-10/+9
| | * | | Review fixesMartin Algesten2025-01-242-50/+29
| | * | | Full RCC support for STM32F107Martin Algesten2025-01-161-3/+109
| * | | | Merge pull request #3792 from adamgreig/stm32-clkmux-unreachableDario Nieuwenhuis2025-01-221-1/+5
| |\ \ \ \
| | * | | | stm32: Change unreachable panic to explicit error message when accessing cloc...Adam Greig2025-01-221-1/+5
| * | | | | Merge pull request #3765 from dimpolo/hertz-displayDario Nieuwenhuis2025-01-221-0/+7
| |\ \ \ \ \
| | * | | | | stm32: impl Display for time::Hertzdimi2025-01-131-0/+7
| | | |_|/ / | | |/| | |
| * | | | | Merge pull request #3791 from embassy-rs/fix-split-pinsDario Nieuwenhuis2025-01-211-1/+1
| |\ \ \ \ \
| | * | | | | Fix issue with enabled split-pxy feature mahu-wm2025-01-201-1/+1
| | | |/ / / | | |/| | |
| * | | | | Merge pull request #3704 from CNLHC/pwm_support_gp32Dario Nieuwenhuis2025-01-216-50/+96
| |\ \ \ \ \
| | * | | | | refactor: update write DMA transfer function to use separate memory word typeLiu Hancheng2025-01-051-5/+5
| | * | | | | refactor: update DMA transfer functions to support separate memory and periph...Liu Hancheng2025-01-042-15/+21
| | * | | | | refactor: simplify timer bits handlingLiu Hancheng2025-01-041-5/+3
| | * | | | | refactor: update DMA pointer types for cryp and hash modulesLiu Hancheng2025-01-042-8/+15
| | * | | | | refactor: update DMA transfer functions to use separate memory and peripheral...Liu Hancheng2025-01-042-29/+35
| | * | | | | dev: change name to bitsLiu Hancheng2025-01-022-2/+2
| | * | | | | refactor: exclude stm32l0 for 32bit timer branchLiu Hancheng2025-01-011-0/+1
| | * | | | | doc: add doc for timer get_bits fnLiu Hancheng2025-01-011-0/+1
| | * | | | | refactor: change import styleLiu Hancheng2025-01-011-2/+1
| | * | | | | docs: Update PWM waveform function documentation for data alignmentLiu Hancheng2025-01-011-1/+4
| | * | | | | feat: Add 32-bit timer support for waveform functionLiu Hancheng2025-01-012-9/+34
| * | | | | | Merge pull request #3782 from Andreychik32/mainDario Nieuwenhuis2025-01-211-1/+1
| |\ \ \ \ \ \ | | |_|/ / / / | |/| | | | |
| | * | | | | fix wrong negation of fdcan set_transmit_pause function parameterAndrii2025-01-171-1/+1
| | | |_|/ / | | |/| | |
| * | | | | Merge pull request #3781 from markus-k/stm32g0-hsisysdivDario Nieuwenhuis2025-01-171-11/+24
| |\ \ \ \ \ | | |/ / / / | |/| | | |
| | * | | | stm32/rcc: add HSISYS support for g0Markus Kasten2025-01-171-11/+24
| | | |/ / | | |/| |
| * / | | chore: bump embassy-sync versionUlf Lilleengen2025-01-151-1/+1
| |/ / /
| * | | Update stm32-metapac, actually release embassy-stm32 v0.2.0Dario Nieuwenhuis2025-01-101-4/+4
| * | | Release embassy-stm32 v0.2.0Dario Nieuwenhuis2025-01-102-1/+276
| * | | Fix unsupported trace! call for EndpointAddressVolkalex282025-01-091-1/+1
| * | | stm32: flash: fix flash erase on stm32f3xx seriesMatt Rodgers2025-01-081-2/+2
| * | | Merge pull request #3725 from CNLHC/qspi_mmapDario Nieuwenhuis2025-01-071-0/+20
| |\ \ \
| | * | | feat: mmap mode for qspi and exampleLiu Hancheng2025-01-071-0/+20
| * | | | Merge pull request #3667 from williams-one/stm32u5-add-hspi-supportDario Nieuwenhuis2025-01-075-1/+1444
| |\ \ \ \