mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
13 lines
394 B
C
13 lines
394 B
C
|
#pragma once
|
||
|
|
||
|
const byte MAX_PACKET_SIZE = 5; // NMRA standard extended packets, payload size WITHOUT checksum.
|
||
|
|
||
|
class dccPacket {
|
||
|
public:
|
||
|
byte data[MAX_PACKET_SIZE+1]; // space for checksum if needed
|
||
|
byte length : 4; // future proof up to 15
|
||
|
byte repeat : 4; // hopefully 15 enough for ever
|
||
|
//byte priority : 2; // 0 repeats; 1 mobile function ; 2 accessory ; 3 mobile speed
|
||
|
};
|
||
|
|