Browse Source
Merge pull request #2022 from weebl2000/adjust-max-framesize
Increase MAX_FRAME_SIZE by 4 bytes
pull/2683/head
Liam Cottle
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/helpers/BaseSerialInterface.h
|
|
@ -2,7 +2,7 @@ |
|
|
|
|
|
|
|
|
#include <Arduino.h> |
|
|
#include <Arduino.h> |
|
|
|
|
|
|
|
|
#define MAX_FRAME_SIZE 172 |
|
|
#define MAX_FRAME_SIZE 176 // +4 for transport codes (region scoping)
|
|
|
|
|
|
|
|
|
class BaseSerialInterface { |
|
|
class BaseSerialInterface { |
|
|
protected: |
|
|
protected: |
|
|
|