RFM69: Disable Resends

This commit is contained in:
seiichiro 2020-04-26 10:10:30 +02:00
parent d69f7086c1
commit 4fdf8db082
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ void loop()
#endif
#ifdef RF_RFM69
radio.sendWithRetry(RFM69_GATEWAY, &data, sizeof(data), 3, random(150,400));
radio.send(RFM69_GATEWAY, &data, sizeof(data));
radio.sleep();
#endif