CoreE/Drivers/EthDrv/eth_drv_lwip.h
2026-09-18 09:49:20 +02: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 */