store SNR in received packets

This commit is contained in:
geeksville
2020-04-30 19:58:10 -07:00
parent 1fab9c5aac
commit 968a2d7fbc
6 changed files with 30 additions and 2 deletions

View File

@@ -116,4 +116,9 @@ class RadioLibInterface : public RadioInterface
/**
* If a send was in progress finish it and return the buffer to the pool */
void completeSending();
/**
* Add SNR data to received messages
*/
virtual void addReceiveMetadata(MeshPacket *mp) = 0;
};