BSzFL-Ethernet/Drivers/EthDrv/eth_drv_lwip.h
Epagris 46ee3099a5 - PHY common 0x1D0 buggy identifier added
- serial IO thread added
- H7 CMSIS files updated
- Ethernet-related commands added
- Memory allocations separated
2025-02-18 10:54:25 +01:00

15 lines
228 B
C

#ifndef ETHDRV_ETH_DRV_LWIP
#define ETHDRV_ETH_DRV_LWIP
#include <stdint.h>
#include <stdbool.h>
typedef struct {
bool init;
bool up;
uint16_t speed;
bool duplex;
} LinkState;
#endif /* ETHDRV_ETH_DRV_LWIP */