Skip to content

Commit

Permalink
Explain buffer size in comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
breaker27 committed Mar 5, 2023
1 parent 37f703d commit 3fb4e2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion firmware/src_common/util_generic.h
Expand Up @@ -27,7 +27,8 @@
#include <stdio.h>
#include <stdbool.h>

// used as buffer for sending data to SHT
// Buffer for receiving data from / sending data to RFM12.
// Size is 64 bytes (for the RMF12 data) + 1 zero-byte.
#define BUFX_LENGTH 65
uint8_t bufx[BUFX_LENGTH];

Expand Down

0 comments on commit 3fb4e2e

Please sign in to comment.