From f81f37cf431d5e589c59a99feb5d9c0a9749e584 Mon Sep 17 00:00:00 2001 From: fraboe Date: Sat, 5 Aug 2023 08:55:50 +0200 Subject: [PATCH] Fixed wrong register definition for RADIOLIB_RF69_SEQUENCER_OFF and RADIOLIB_RF69_SEQUENCER_ON --- src/modules/RF69/RF69.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/RF69/RF69.h b/src/modules/RF69/RF69.h index 82426cad..8ecb2a85 100644 --- a/src/modules/RF69/RF69.h +++ b/src/modules/RF69/RF69.h @@ -98,8 +98,8 @@ // RF69 modem settings // RADIOLIB_RF69_REG_OP_MODE MSB LSB DESCRIPTION -#define RADIOLIB_RF69_SEQUENCER_OFF 0b00000000 // 7 7 disable automatic sequencer -#define RADIOLIB_RF69_SEQUENCER_ON 0b10000000 // 7 7 enable automatic sequencer +#define RADIOLIB_RF69_SEQUENCER_OFF 0b10000000 // 7 7 disable automatic sequencer +#define RADIOLIB_RF69_SEQUENCER_ON 0b00000000 // 7 7 enable automatic sequencer #define RADIOLIB_RF69_LISTEN_OFF 0b00000000 // 6 6 disable Listen mode #define RADIOLIB_RF69_LISTEN_ON 0b01000000 // 6 6 enable Listen mode #define RADIOLIB_RF69_LISTEN_ABORT 0b00100000 // 5 5 abort Listen mode (has to be set together with RF69_LISTEN_OFF)