We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72216ce commit 0c73aacCopy full SHA for 0c73aac
test/test_PacketVS2/test_PacketVS2.cpp
@@ -26,7 +26,7 @@ void test_ok_requestRead() {
26
0x25, // address 2
27
0x02 // payload length
28
};
29
- const std::size_t length = 6;
+ const std::size_t length = 5;
30
const uint8_t checksum = 0x82;
31
32
PacketVS2 packet;
@@ -52,7 +52,7 @@ void test_ok_requestWrite() {
52
0x01, // payload length
53
0x01 // payload
54
55
- const std::size_t length = 7;
+ const std::size_t length = 6;
56
const uint8_t checksum = 0x50;
57
58
uint8_t payload[1] = {0x01};
@@ -80,7 +80,7 @@ void test_packetId() {
80
81
82
const uint8_t packetId = 5;
83
84
const uint8_t checksum = 0x22;
85
86
0 commit comments