From 7d642112d41c78b89bfd9db70cccc0055c3f5547 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sat, 11 Jun 2022 18:58:30 +0300 Subject: [PATCH] arduino-rx : enable all DT and MT protocols --- examples/arduino-rx/arduino-rx.ino | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/arduino-rx/arduino-rx.ino b/examples/arduino-rx/arduino-rx.ino index 5eb3afc..d192c2f 100644 --- a/examples/arduino-rx/arduino-rx.ino +++ b/examples/arduino-rx/arduino-rx.ino @@ -77,11 +77,11 @@ void setup() { GGWave::Protocols::tx().toggle(GGWAVE_PROTOCOL_MT_FASTEST, true); GGWave::Protocols::rx().disableAll(); - //GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_DT_NORMAL, true); - //GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_DT_FAST, true); - //GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_DT_FASTEST, true); - //GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_MT_NORMAL, true); - //GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_MT_FAST, true); + GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_DT_NORMAL, true); + GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_DT_FAST, true); + GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_DT_FASTEST, true); + GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_MT_NORMAL, true); + GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_MT_FAST, true); GGWave::Protocols::rx().toggle(GGWAVE_PROTOCOL_MT_FASTEST, true); delay(1000);