STM32Ethernet icon indicating copy to clipboard operation
STM32Ethernet copied to clipboard

Arduino library to support Ethernet for STM32 based board

Results 6 STM32Ethernet issues
Sort by recently updated
recently updated
newest added

Currently, LAN8742A_PHY is only supported. Goal is to have a generic PHY support to be able to support some other. ### requested PHY support: * [ ] DP83848_PHY #15 *...

enhancement

Ethernet.MACAddress should be a getter, not setter https://github.com/arduino-libraries/Ethernet/blob/39103da0e1bc569023625ee4693272773397dbb6/src/Ethernet.cpp#L147-L153 ``` void EthernetClass::MACAddress(uint8_t *mac_address) { SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.getMACAddress(mac_address); SPI.endTransaction(); } ```

Since STM32CubeF4 Firmware Package v1.27.0: The following changes done on the HAL drivers require an update of the application code based on older HAL versions ### Rework of HAL Ethernet...

enhancement

**Description** The `peek()` functions of the `EthernetUDP` and `EthernetClient` classes always returns the first byte of a packet. A fix is proposed. **To Reproduce** Code used: ```cpp #include "Arduino.h" #include...

bug

Hi, I am encountering an issue where the MCU crashes after sending 80KB of data via TCP several thousand times. Below is a summary of the problem: After several thousand...