fix magicData for LNCVWrite command (was PROG END 0x40, should be 0x00)
Dieser Commit ist enthalten in:
Ursprung
7239e381d9
Commit
61d2fc7491
@ -206,7 +206,7 @@ static_assert(sizeof(LNCVReadResponse) == 15);
|
||||
|
||||
struct LNCVWrite : ImmPacketDataMessage
|
||||
{
|
||||
static constexpr std::array<uint8_t, dataLen> magicData = {0x01, 0x05, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40};
|
||||
static constexpr std::array<uint8_t, dataLen> magicData = {0x01, 0x05, 0x00, 0x20, 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};
|
||||
|
||||
inline static bool check(const Message& message)
|
||||
|
||||
Laden…
x
In neuem Issue referenzieren
Einen Benutzer sperren