Remove outdated comments (#4417)

These comments from four years ago no longer reflect how things
work.
This commit is contained in:
Tom Fifield
2024-08-09 09:08:14 +08:00
committed by GitHub
parent 5111bd703a
commit 02ae24b6fa
2 changed files with 2 additions and 23 deletions

View File

@@ -19,14 +19,6 @@
#include "serialization/MeshPacketSerializer.h"
#endif
#include "../userPrefs.h"
/**
* Router todo
*
* DONE: Implement basic interface and use it elsewhere in app
* Add naive flooding mixin (& drop duplicate rx broadcasts), add tools for sending broadcasts with incrementing sequence #s
* Add an optional adjacent node only 'send with ack' mixin. If we timeout waiting for the ack, call handleAckTimeout(packet)
*
**/
#define MAX_RX_FROMRADIO \
4 // max number of packets destined to our queue, we dispatch packets quickly so it doesn't need to be big
@@ -546,4 +538,4 @@ void Router::perhapsHandleReceived(meshtastic_MeshPacket *p)
handleReceived(p);
packetPool.release(p);
}
}