Procedural reference

This commit is contained in:
2024-11-20 15:22:17 +03:00
parent b6e2fb1356
commit eee3b84b8e
11 changed files with 580 additions and 0 deletions

View File

@ -0,0 +1,24 @@
#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__