Update main.cpp

This commit is contained in:
tuxphone 2020-09-14 16:36:31 +02:00 committed by GitHub
parent 087b206ea1
commit d884e33ec0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 13 deletions

View File

@ -115,8 +115,8 @@ void OnTxTimeout( void )
void OnRxDone( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr )
{
( size > BUFFER_SIZE ) ? rxSize = BUFFER_SIZE : rxSize = size;
memcpy( mPacket, payload, size );
rxSize=size;
Radio.Sleep();
#ifndef SILENT
Serial.printf("\nReceived packet! (Size %i bytes, RSSI %i, SNR %i)\n", size, rssi, snr);