Increase MAX_FRAME_SIZE by 4 bytes

It's the safest fix for now to fix region scoped messages from being
dropped early
This commit is contained in:
Wessel Nieboer 2026-03-14 02:47:03 +01:00
parent fb726e48c2
commit 6312ca4c4b
No known key found for this signature in database
GPG key ID: 27BB1C3D63DEEFFF

View file

@ -2,7 +2,7 @@
#include <Arduino.h>
#define MAX_FRAME_SIZE 172
#define MAX_FRAME_SIZE 176 // +4 for transport codes (region scoping)
class BaseSerialInterface {
protected: