We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f323de commit 0fce221Copy full SHA for 0fce221
3 files changed
Common/PABotBase2/PABotBase2_MessageProtocol.h
@@ -23,7 +23,7 @@ namespace PABotBase2{
23
24
25
26
-#define PABB2_MESSAGE_PROTOCOL_VERSION 2026052101
+#define PABB2_MESSAGE_PROTOCOL_VERSION 2026061800
27
28
29
struct PABB_PACK MessageHeader{
@@ -53,16 +53,16 @@ struct PABB_PACK Message_u32 : MessageHeader{
53
#define PABB2_MESSAGE_OPCODE_DEVICE_NAME 0x23
54
#define PABB2_MESSAGE_OPCODE_CONTROLLER_LIST 0x24
55
#define PABB2_MESSAGE_OPCODE_SET_LOGGING_FLAG 0x25
56
-#define PABB2_MESSAGE_OPCODE_CQ_CAPACITY 0x28
57
-
58
-#define PABB2_MESSAGE_OPCODE_REQUEST_SESSION_NUM 0x37
59
-#define PABB2_MESSAGE_OPCODE_REQUEST_STATUS 0x35
60
-#define PABB2_MESSAGE_OPCODE_READ_CONTROLLER_MODE 0x30
61
-#define PABB2_MESSAGE_OPCODE_CHANGE_CONTROLLER_MODE 0x31
62
-#define PABB2_MESSAGE_OPCODE_RESET_TO_CONTROLLER 0x32
63
-#define PABB2_MESSAGE_OPCODE_CONTROLLER_MAC_ADDRESS 0x33
64
-#define PABB2_MESSAGE_OPCODE_PAIRED_MAC_ADDRESS 0x34
65
-#define PABB2_MESSAGE_OPCODE_CONSOLE_DISCONNECT 0x36
+#define PABB2_MESSAGE_OPCODE_CQ_CAPACITY 0x26
+
+#define PABB2_MESSAGE_OPCODE_REQUEST_SESSION_NUM 0x30
+#define PABB2_MESSAGE_OPCODE_REQUEST_STATUS 0x31
+#define PABB2_MESSAGE_OPCODE_READ_CONTROLLER_MODE 0x32
+#define PABB2_MESSAGE_OPCODE_CHANGE_CONTROLLER_MODE 0x33
+#define PABB2_MESSAGE_OPCODE_RESET_TO_CONTROLLER 0x34
+#define PABB2_MESSAGE_OPCODE_CONTROLLER_MAC_ADDRESS 0x35
+#define PABB2_MESSAGE_OPCODE_PAIRED_MAC_ADDRESS 0x36
+#define PABB2_MESSAGE_OPCODE_CONSOLE_DISCONNECT 0x37
66
67
#define PABB2_MESSAGE_OPCODE_CQ_COMMAND_DROPPED 0x40
68
#define PABB2_MESSAGE_OPCODE_CQ_CANCEL 0x41
Common/PABotBase2/ReliableConnectionLayer/PABotBase2_PacketProtocol.h
@@ -32,7 +32,7 @@ namespace PABotBase2{
32
//
33
34
#define PABB2_CONNECTION_MAGIC_NUMBER 0x81
35
-#define PABB2_CONNECTION_PROTOCOL_VERSION 2026052100
+#define PABB2_CONNECTION_PROTOCOL_VERSION 2026061800
36
37
38
#define PABB2_CONNECTION_RETRANSMIT_FLAG 0x80
SerialPrograms/Source/Controllers/SerialPABotBase/SerialPABotBase.cpp
@@ -50,13 +50,13 @@ const std::map<uint32_t, std::map<pabb_ProgramID, uint8_t>>& SUPPORTED_VERSIONS(
50
// These version #'s are for the MLC layer.
51
const std::map<pabb_ProgramID, uint32_t>& SUPPORTED_DEVICES2(){
52
static const std::map<pabb_ProgramID, uint32_t> database{
- {PABB_PID_UNSPECIFIED, 2026052102},
- {PABB_PID_PABOTBASE_ESP32, 2026052102},
- {PABB_PID_PABOTBASE_ESP32S3, 2026052100},
- {PABB_PID_PABOTBASE_RP2040, 2026052100},
- {PABB_PID_PABOTBASE_RP2350, 2026052100},
- {PABB_PID_PABOTBASE_Pico1W, 2026052102},
- {PABB_PID_PABOTBASE_Pico2W, 2026052102},
+ {PABB_PID_UNSPECIFIED, 2026061800},
+ {PABB_PID_PABOTBASE_ESP32, 2026061800},
+ {PABB_PID_PABOTBASE_ESP32S3, 2026061800},
+ {PABB_PID_PABOTBASE_RP2040, 2026061800},
+ {PABB_PID_PABOTBASE_RP2350, 2026061800},
+ {PABB_PID_PABOTBASE_Pico1W, 2026061800},
+ {PABB_PID_PABOTBASE_Pico2W, 2026061800},
};
return database;
}
0 commit comments