| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add new{_with_phy}, new_mii{_with_phy} | datdenkikniet | 2025-11-14 | 1 | -4/+74 |
| | | |||||
| * | Run clock setup/enablement in new_inner | datdenkikniet | 2025-11-13 | 1 | -26/+14 |
| | | |||||
| * | ETH no longer knows about Station management | datdenkikniet | 2025-11-13 | 1 | -18/+6 |
| | | |||||
| * | Move SMA responsibility to SMA peripheral | datdenkikniet | 2025-11-13 | 1 | -74/+7 |
| | | |||||
| * | Give EthernetManagement owernship of MDIO pins | datdenkikniet | 2025-11-13 | 1 | -19/+31 |
| | | |||||
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -2/+4 |
| | | |||||
| * | stm32/afio: make af_num() unavailable in afio chips. | Dario Nieuwenhuis | 2025-09-06 | 1 | -1/+1 |
| | | |||||
| * | stm32/afio: make the A generic param only appear in chips with AFIO. | Dario Nieuwenhuis | 2025-09-05 | 1 | -25/+25 |
| | | |||||
| * | Add STM32F1 AFIO remap | Fabian Wolter | 2025-09-05 | 1 | -25/+25 |
| | | |||||
| * | Remove Peripheral trait, rename PeripheralRef->Peri. | Dario Nieuwenhuis | 2025-03-27 | 1 | -57/+55 |
| | | |||||
| * | stm32/eth: rename PHY->Phy, GenericSMI -> GenericPhy. Remove unneeded unsafes. | Dario Nieuwenhuis | 2025-01-26 | 1 | -4/+4 |
| | | | | | | We shouldn't use `unsafe` to mark merely "dangerous" actions, only actions that actually cause UB. | ||||
| * | 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]> | ||||
| * | stm32/gpio: refactor AfType | Jan Špaček | 2024-06-16 | 1 | -3/+3 |
| | | |||||
| * | 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 |
| | | |||||
| * | stm32: use private_bounds for sealed traits. | Dario Nieuwenhuis | 2024-03-23 | 1 | -15/+14 |
| | | |||||
| * | stm32: autogenerate clocks struct, enable mux for all chips. | Dario Nieuwenhuis | 2024-02-02 | 1 | -2/+2 |
| | | |||||
| * | 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 | 1 | -23/+113 |
| | | | | | | | | | - 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: add some docs. | Dario Nieuwenhuis | 2023-12-18 | 1 | -0/+3 |
| | | |||||
| * | rcc: ahb/apb -> hclk/pclk | xoviat | 2023-10-15 | 1 | -1/+1 |
| | | |||||
| * | stm32/eth: Move `phy_addr` from `Ethernet` to `PHY` | Gabriel Górski | 2023-10-09 | 1 | -7/+4 |
| | | | | | | | | | | 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 | 1 | -1/+0 |
| | | |||||
| * | Rename embassy-hal-common to embassy-hal-internal, document it's for ↵ | Dario Nieuwenhuis | 2023-07-28 | 1 | -1/+1 |
| | | | | | internal use only. (#1700) | ||||
| * | stm32/eth: refactor genericsmi | xoviat | 2023-07-15 | 1 | -9/+18 |
| | | |||||
| * | stm32: update stm32-metapac. | Dario Nieuwenhuis | 2023-06-19 | 1 | -226/+209 |
| | | |||||
| * | Make interrupt module more standard. | Dario Nieuwenhuis | 2023-06-08 | 1 | -5/+5 |
| | | | | | | | | | | | | | - Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`. | ||||
| * | cortex-m: remove owned interrupts. | Dario Nieuwenhuis | 2023-06-01 | 1 | -3/+3 |
| | | |||||
| * | stm32: move to bind_interrupts | xoviat | 2023-05-24 | 1 | -24/+29 |
| | | | | | disable lora functionality for now | ||||
| * | stm32: add H5 support. | Dario Nieuwenhuis | 2023-04-06 | 1 | -4/+21 |
| | | |||||
| * | stm32/eth_v2: update to new embassy-net trait, remove PeripheralMutex. | Dario Nieuwenhuis | 2022-12-13 | 1 | -227/+156 |
| | | |||||
| * | Disable MMC interrupts | Matous Hybl | 2022-11-10 | 1 | -0/+18 |
| | | | | | MMC interrupts can cause firmware hangup - refer to: https://github.com/stm32-rs/stm32h7xx-hal/issues/275 for more information | ||||
| * | make `State::new()` const, consistent with others | Vincent Stakenburg | 2022-09-15 | 1 | -1/+1 |
| | | |||||
| * | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | 2022-08-22 | 1 | -1/+1 |
| | | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 1 | -1/+1 |
| | | |||||
| * | Rename Unborrowed -> PeripheralRef, Unborrow -> Peripheral | Dario Nieuwenhuis | 2022-07-23 | 1 | -16/+16 |
| | | |||||
| * | Update embassy-stm32 | Dario Nieuwenhuis | 2022-07-23 | 1 | -11/+11 |
| | | |||||
| * | Run rustfmt. | Dario Nieuwenhuis | 2022-06-12 | 1 | -13/+8 |
| | | |||||
| * | Add embassy-cortex-m crate. | Dario Nieuwenhuis | 2022-06-12 | 1 | -2/+2 |
| | | | | | | | - Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`. | ||||
| * | common/PeripheralMutex: remove unsafe API. (#802) | Dario Nieuwenhuis | 2022-06-09 | 1 | -1/+1 |
| | | | | | | | Following the project's decision that "leak unsafe" APIs are not marked as "unsafe", update PeripheralMutex to accept non-'static state without unsafe. Fixes #801 | ||||
| * | WIP embassy-net v2 | Dario Nieuwenhuis | 2022-05-25 | 1 | -1/+1 |
| | | |||||
| * | net: add functions to get current Eth and IP config | Dario Nieuwenhuis | 2022-05-02 | 1 | -1/+1 |
| | | |||||
| * | Update rust nightly, embedded-hal 1.0, embedded-hal-async. | Dario Nieuwenhuis | 2022-03-11 | 1 | -1/+1 |
| | | |||||
| * | stm32: centralize gpio reg access in the gpio module. | Dario Nieuwenhuis | 2022-02-24 | 1 | -7/+6 |
| | | |||||
| * | stm32: Add standard crate-wide macros for pin/dma traits, switch all drivers ↵ | Dario Nieuwenhuis | 2022-02-10 | 1 | -150/+49 |
| | | | | | to use them. | ||||
| * | Fix v2 ethernet pin definitions. Fix ethernet example for H7 nucleos. | Matous Hybl | 2021-11-04 | 1 | -2/+2 |
| | | |||||
| * | partial alternate function configuration on STM32f1 | Tobias Pisani | 2021-10-11 | 1 | -2/+2 |
| | | |||||
| * | Code review request - moving `OutputType` to `mod sealed` | Mariusz Ryndzionek | 2021-09-24 | 1 | -1/+1 |
| | | |||||
