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 dc2d50f commit 95f0c51Copy full SHA for 95f0c51
Tactility/Private/Tactility/app/chat/ChatProtocol.h
@@ -16,7 +16,7 @@ constexpr uint32_t CHAT_MAGIC_HEADER = 0x31544354; // "TCT1"
16
constexpr uint8_t PROTOCOL_VERSION = 0x01;
17
constexpr size_t SENDER_NAME_SIZE = 24;
18
constexpr size_t TARGET_SIZE = 24;
19
-constexpr size_t MESSAGE_SIZE = 1417; // Max for ESP-NOW v2.0 (1470 - 53 header bytes)
+constexpr size_t MESSAGE_SIZE = 200; //1417 Max for ESP-NOW v2.0 (1470 - 53 header bytes)
20
21
// Header size = offset to message field (header + version + sender_name + target)
22
constexpr size_t MESSAGE_HEADER_SIZE = 4 + 1 + SENDER_NAME_SIZE + TARGET_SIZE; // 53 bytes
0 commit comments