2025-06-11 14:32:56 +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 */