Split up the serial code, but had to gut it in the process

Since the contents of the packets are different than before, I decided to
gut the serialization code. I'll reimplement the internals soon.
This commit is contained in:
Kayne Ruse
2014-06-04 23:03:24 +10:00
parent da60fa8f94
commit 23364b2810
13 changed files with 649 additions and 488 deletions
+3 -2
View File
@@ -38,9 +38,10 @@ struct SerialPacketBase {
IPaddress srcAddress;
typedef SerialPacketType Type;
virtual ~SerialPacketBase();
};
typedef SerialPacketBase* SerialPacket;
typedef SerialPacketType PacketType;
typedef SerialPacketBase SerialPacket;
#endif