Remove old SimRadio from RadioInterface

This commit is contained in:
GUVWAF 2022-10-01 11:57:27 +02:00
parent 84ec364ac2
commit 067bde321b
2 changed files with 0 additions and 11 deletions

View File

@ -461,12 +461,6 @@ void RadioInterface::limitPower()
DEBUG_MSG("Set radio: final power level=%d\n", power); DEBUG_MSG("Set radio: final power level=%d\n", power);
} }
ErrorCode SimRadio::send(MeshPacket *p)
{
DEBUG_MSG("SimRadio.send\n");
packetPool.release(p);
return ERRNO_OK;
}
void RadioInterface::deliverToReceiver(MeshPacket *p) void RadioInterface::deliverToReceiver(MeshPacket *p)
{ {

View File

@ -212,11 +212,6 @@ class RadioInterface
} }
}; };
class SimRadio : public RadioInterface
{
public:
virtual ErrorCode send(MeshPacket *p) override;
};
/// Debug printing for packets /// Debug printing for packets
void printPacket(const char *prefix, const MeshPacket *p); void printPacket(const char *prefix, const MeshPacket *p);