Browse Source

Increase buffer size to fit B0 code

pull/1423/head
Max Prokhorov 5 years ago
committed by GitHub
parent
commit
e47bdad2ac
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/rfbridge.ino

+ 1
- 1
code/espurna/rfbridge.ino View File

@ -102,7 +102,7 @@ static bool _rfbToChar(byte * in, char * out, int n = RF_MESSAGE_SIZE) {
#if WEB_SUPPORT
void _rfbWebSocketSendCode(unsigned char id, bool status, const char * code) {
char wsb[100];
char wsb[192];
snprintf_P(wsb, sizeof(wsb), PSTR("{\"rfb\":[{\"id\": %d, \"status\": %d, \"data\": \"%s\"}]}"), id, status ? 1 : 0, code);
wsSend(wsb);
}


Loading…
Cancel
Save