mirror of
https://github.com/Show-maket/EthernetMaket.git
synced 2025-06-28 05:09:38 +00:00
24 lines
388 B
C
24 lines
388 B
C
#ifndef __ETHERNETMAKET_H__
|
|
#define __ETHERNETMAKET_H__
|
|
|
|
#include "Ethernet3.h"
|
|
|
|
|
|
|
|
enum ConnectionStatusSimple{
|
|
CONNECT_FAIL = 0,
|
|
CONNECT_SUCCESS = 1,
|
|
CONNECT_CONNECTING = 2,
|
|
CONNECT_START = 3,
|
|
CONNECT_IDLE = 4,
|
|
CONNECT_CONNECTED = 5,
|
|
CONNECT_STOP_START = 6,
|
|
CONNECT_STOP_WAITING = 7,
|
|
};
|
|
|
|
|
|
|
|
#include "EthernetOverride/TCP.h"
|
|
|
|
|
|
#endif // __ETHERNETMAKET_H__
|