blob: 4e9cb58164a199467d4ab4f0014ec84cbe6e5a58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "CommunicationPacket.h"
CommunicationPacket::CommunicationPacket(unsigned startAddress, unsigned endAddress) {
this->startAddress = startAddress;
this->endAddress = endAddress;
dataSize = 0;
}
CommunicationPacket::CommunicationPacket() : CommunicationPacket(0, 0) {
}
|