From 98259c0e3fd3c74504d364665d3a1647ec21cebe Mon Sep 17 00:00:00 2001 From: jgromes Date: Sat, 1 Jun 2019 20:47:45 +0200 Subject: [PATCH] [PHY] Fixed incorrect parameter name --- src/protocols/PhysicalLayer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocols/PhysicalLayer.h b/src/protocols/PhysicalLayer.h index 162c4d33..6aa8a0fa 100644 --- a/src/protocols/PhysicalLayer.h +++ b/src/protocols/PhysicalLayer.h @@ -168,7 +168,7 @@ class PhysicalLayer { \returns \ref status_codes */ - virtual int16_t transmitDirect(uint32_t FRF = 0) = 0; + virtual int16_t transmitDirect(uint32_t frf = 0) = 0; /*! \brief Enables direct reception mode on pins DIO1 (clock) and DIO2 (data). Must be implemented in module class.