loconet: corrected LNCVReadResponse mask

didn't detect response sent by https://github.com/mrrwa/LocoNet library
Dieser Commit ist enthalten in:
Reinder Feenstra 2023-10-01 23:58:27 +02:00
Ursprung b536175a4a
Commit 395cf14425

Datei anzeigen

@ -145,7 +145,7 @@ static_assert(sizeof(LNCVRead) == 15);
struct LNCVReadResponse : PeerXferDataMessage
{
static constexpr std::array<uint8_t, dataLen> magicData = {0x05, 0x49, 0x4B, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
static constexpr std::array<uint8_t, dataLen> magicMask = {0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0xFF};
static constexpr std::array<uint8_t, dataLen> magicMask = {0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0xFF};
inline static bool check(const Message& message)
{