From eb865565b05a6183c6c89aa93146d45d16daa1cf Mon Sep 17 00:00:00 2001 From: Michael Jossen Date: Thu, 22 Aug 2024 16:23:50 +0200 Subject: [PATCH] [driver] radio: dw3110 Remove outdated TODOs --- src/modm/driver/radio/dw3110/dw3110_phy.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/modm/driver/radio/dw3110/dw3110_phy.hpp b/src/modm/driver/radio/dw3110/dw3110_phy.hpp index f910ac244f..b265f00e45 100644 --- a/src/modm/driver/radio/dw3110/dw3110_phy.hpp +++ b/src/modm/driver/radio/dw3110/dw3110_phy.hpp @@ -69,7 +69,6 @@ class Dw3110Phy : public modm::SpiDevice, protected modm::NestedResum // Set the time spent listening for competing transmissions on CCA commands // Unit is in counts of PAC symbols - // TODO test modm::ResumableResult setCCATimeout(uint16_t timeout); @@ -82,7 +81,6 @@ class Dw3110Phy : public modm::SpiDevice, protected modm::NestedResum setEnableFastTurnaround(bool value); // Read the value of the internal chip clock - // TODO test modm::ResumableResult readChipTime(); @@ -105,14 +103,12 @@ class Dw3110Phy : public modm::SpiDevice, protected modm::NestedResum // Set the time between RX of a packet and the TX of the acknowledgement // Specified in number of preamble symbols, so time depends on the PRF - // TODO test modm::ResumableResult setAcknowledgeTurnaround(uint8_t time); // Set the time between a transmission and the start of RX on any of the RX // after TX commands This can be used to delay turning on of the receiver // after transmission to save on power. - // TODO test modm::ResumableResult setWaitForResponseTime(modm::PreciseClock::duration time);