Reduce example payload size. Does this help reliability?
This commit is contained in:
parent
9566c82367
commit
774f53d6c5
|
@ -99,6 +99,10 @@ void setup(void)
|
||||||
// optionally, increase the CRC length for improved reliability
|
// optionally, increase the CRC length for improved reliability
|
||||||
radio.setCRCLength(RF24_CRC_16);
|
radio.setCRCLength(RF24_CRC_16);
|
||||||
|
|
||||||
|
// optionally, reduce the payload size. seems to
|
||||||
|
// improve reliability
|
||||||
|
radio.setPayloadSize(8);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Open pipes to other nodes for communication
|
// Open pipes to other nodes for communication
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue