| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add new{_with_phy}, new_mii{_with_phy} | datdenkikniet | 2025-11-14 | 3 | -8/+155 |
| | | |||||
| * | Run clock setup/enablement in new_inner | datdenkikniet | 2025-11-13 | 2 | -92/+48 |
| | | |||||
| * | ETH no longer knows about Station management | datdenkikniet | 2025-11-13 | 5 | -81/+40 |
| | | |||||
| * | Move SMA responsibility to SMA peripheral | datdenkikniet | 2025-11-13 | 6 | -167/+244 |
| | | |||||
| * | Add SMA peripheral | datdenkikniet | 2025-11-13 | 2 | -0/+34 |
| | | |||||
| * | Give EthernetManagement owernship of MDIO pins | datdenkikniet | 2025-11-13 | 2 | -38/+62 |
| | | |||||
| * | stm32: extract block_for_us | xoviat | 2025-11-13 | 1 | -13/+1 |
| | | | | | remove from pub api | ||||
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 5 | -8/+12 |
| | | |||||
| * | stm32/afio: make af_num() unavailable in afio chips. | Dario Nieuwenhuis | 2025-09-06 | 2 | -8/+4 |
| | | |||||
| * | stm32/afio: make the A generic param only appear in chips with AFIO. | Dario Nieuwenhuis | 2025-09-05 | 2 | -50/+50 |
| | | |||||
| * | Add STM32F1 AFIO remap | Fabian Wolter | 2025-09-05 | 3 | -66/+70 |
| | | |||||
| * | STM32F107: Fix inadvertent re-configuration of the SWJ/JTAG pins when ↵ | Fabian Wolter | 2025-07-17 | 1 | -2/+8 |
| | | | | | activating the (R)MII interface | ||||
| * | Implement MII for STM32 V1 ethernet peripheral | Andreas Galauner | 2025-04-15 | 1 | -15/+116 |
| | | |||||
| * | Remove Peripheral trait, rename PeripheralRef->Peri. | Dario Nieuwenhuis | 2025-03-27 | 3 | -83/+80 |
| | | |||||
| * | stm32/eth: rename PHY->Phy, GenericSMI -> GenericPhy. Remove unneeded unsafes. | Dario Nieuwenhuis | 2025-01-26 | 4 | -34/+32 |
| | | | | | | We shouldn't use `unsafe` to mark merely "dangerous" actions, only actions that actually cause UB. | ||||
| * | split PHY constructor to `new` and `new_auto` | nikvoid | 2025-01-23 | 1 | -4/+31 |
| | | |||||
| * | run rustfmt | nikvoid | 2025-01-22 | 1 | -2/+2 |
| | | |||||
| * | remove cortex-m delay | nikvoid | 2025-01-22 | 1 | -1/+0 |
| | | |||||
| * | use `Delay` from `embassy-time` to wait for PHY response | nikvoid | 2025-01-22 | 1 | -6/+8 |
| | | |||||
| * | Option to detect Ethernet PHY address automatically | nikvoid | 2025-01-22 | 1 | -2/+20 |
| | | |||||
| * | chore: fix build | elagil | 2025-01-03 | 2 | -7/+7 |
| | | |||||
| * | remove trailing space from comment | Ian McKernan | 2025-01-01 | 1 | -1/+1 |
| | | |||||
| * | added fix for https://github.com/embassy-rs/embassy/issues/2496 in the v1 driver | Ian McKernan | 2025-01-01 | 1 | -0/+5 |
| | | |||||
| * | Use inline const for initializing arrays. (#3567) | Dario Nieuwenhuis | 2024-11-24 | 1 | -4/+2 |
| | | |||||
| * | feat/stm32: disable multicast filtering on eth v2 | Krzysztof Królczyk | 2024-11-01 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | Initially, this was feature-gated, but has been requested to be changed to be unconditional, see PR 3488 for reasons. When filtering is enabled, it intercepts and drops silently ipv6 packets, possibly somewhere around smoltcp::iface::interface::ipv6 lines 36, 44 in current head sha e9b66eadaeacef758ebc4a12378f8d2162144cf4 With filtering disabled (this patch), packets are received and communication over ipv6 is possible, neighbor discovery works. related: #2496 Signed-off-by: Krzysztof Królczyk <[email protected]> | ||||
| * | rustfmt for new nightly. | Dario Nieuwenhuis | 2024-10-14 | 1 | -2/+8 |
| | | |||||
| * | embassy_stm32/eth: support compliance testing | Gerhard de Clercq | 2024-09-20 | 1 | -0/+14 |
| | | | | | | | This change adds the possibility to perform compliance testing with STM32 systems by directly exposing SMI when needed. Users can then use this to configure PHY registers for test modes. | ||||
| * | stm32/gpio: refactor AfType | Jan Špaček | 2024-06-16 | 2 | -9/+9 |
| | | |||||
| * | stm32: add support for STM32H7[RS] "bootflash line", add HIL tests. | Dario Nieuwenhuis | 2024-05-01 | 1 | -31/+5 |
| | | |||||
| * | stm32: update metapac. Adds U5 LPDMA, fixes ADC_COMMONs. | Dario Nieuwenhuis | 2024-04-29 | 1 | -4/+0 |
| | | |||||
| * | Reduce use of the full `futures` crate. | Dario Nieuwenhuis | 2024-04-26 | 1 | -2/+3 |
| | | |||||
| * | stm32: use private_bounds for sealed traits. | Dario Nieuwenhuis | 2024-03-23 | 3 | -33/+30 |
| | | |||||
| * | correct spelling of the word "receive" | Stefan Gehr | 2024-02-03 | 1 | -1/+1 |
| | | |||||
| * | stm32: autogenerate clocks struct, enable mux for all chips. | Dario Nieuwenhuis | 2024-02-02 | 3 | -5/+6 |
| | | |||||
| * | stm32/eth: rename new_rmii to new, update metapac to fix issues with PC2_C. | Dario Nieuwenhuis | 2024-02-01 | 1 | -1/+1 |
| | | |||||
| * | Implement MII interface | Simon B. Gasse | 2024-02-01 | 2 | -23/+120 |
| | | | | | | | | | - Extend the eth/v2 module to support MII besides RMII. - Replace `Ethernet::new` with `Ethernet::new_mii` and `Ethernet::new_rmii`. - Update ethernet examples. - Add example for MII ethernet. | ||||
| * | stm32: more docs. | Dario Nieuwenhuis | 2023-12-19 | 1 | -0/+1 |
| | | |||||
| * | stm32: more docs. | Dario Nieuwenhuis | 2023-12-18 | 1 | -0/+2 |
| | | |||||
| * | stm32: add some docs. | Dario Nieuwenhuis | 2023-12-18 | 3 | -1/+28 |
| | | |||||
| * | stm32: resolve eth/v2 security bug | xoviat | 2023-11-07 | 1 | -14/+10 |
| | | | | | fixes #2129 | ||||
| * | rcc: ahb/apb -> hclk/pclk | xoviat | 2023-10-15 | 2 | -2/+2 |
| | | |||||
| * | stm32/eth: Move `phy_addr` from `Ethernet` to `PHY` | Gabriel Górski | 2023-10-09 | 4 | -32/+27 |
| | | | | | | | | | | Previously, PHY addressing was a concern of the `Ethernet` struct which limited the `PHY` implementations which very often have to manage multiple PHYs internally and thus possibly need to address many of them. This change extends `StationManagement` to allow addressing different PHY addresses via SMI. | ||||
| * | stm32: update metapac and remove sbs | xoviat | 2023-09-28 | 1 | -2/+2 |
| | | |||||
| * | stm32/eth: fix receiving large frames on v2. | Dario Nieuwenhuis | 2023-09-28 | 1 | -3/+1 |
| | | |||||
| * | stm32: centralize enabling pwr, syscfg, flash. | Dario Nieuwenhuis | 2023-09-25 | 2 | -2/+0 |
| | | |||||
| * | Introduce driver::HardwareAddress without smoltcp dependency | Ruben De Smet | 2023-07-31 | 1 | -3/+3 |
| | | |||||
| * | Rename embassy-hal-common to embassy-hal-internal, document it's for ↵ | Dario Nieuwenhuis | 2023-07-28 | 2 | -2/+2 |
| | | | | | internal use only. (#1700) | ||||
| * | stm32/eth: fix cfg(not(time)) | xoviat | 2023-07-17 | 1 | -6/+6 |
| | | |||||
| * | stm32/eth: add set_poll_interval | xoviat | 2023-07-15 | 1 | -2/+8 |
| | | |||||
| * | stm32/eth: impl. poll interval | xoviat | 2023-07-15 | 1 | -1/+24 |
| | | |||||
