From f2c1895cdb7e5cc077da6c09378f4704853b5acc Mon Sep 17 00:00:00 2001 From: jgromes Date: Tue, 28 May 2019 19:22:42 +0200 Subject: [PATCH] [PHY] Added standby --- src/protocols/PhysicalLayer.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/protocols/PhysicalLayer.h b/src/protocols/PhysicalLayer.h index bb432131..162c4d33 100644 --- a/src/protocols/PhysicalLayer.h +++ b/src/protocols/PhysicalLayer.h @@ -94,6 +94,13 @@ class PhysicalLayer { */ virtual int16_t receive(uint8_t* data, size_t len) = 0; + /*! + \brief Sets module to standby. + + \returns \ref status_codes + */ + virtual int16_t standby() = 0; + /*! \brief Interrupt-driven Arduino String transmit method. Unlike the standard transmit method, this one is non-blocking. Interrupt pin will be activated when transmission finishes.