Merge pull request #807 from ramaza/fix_rf69

Fixed wrong register definition
This commit is contained in:
Jan Gromeš 2023-08-05 10:53:23 +02:00 committed by GitHub
commit 44c0ea25e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,8 +98,8 @@
// RF69 modem settings // RF69 modem settings
// RADIOLIB_RF69_REG_OP_MODE MSB LSB DESCRIPTION // RADIOLIB_RF69_REG_OP_MODE MSB LSB DESCRIPTION
#define RADIOLIB_RF69_SEQUENCER_OFF 0b00000000 // 7 7 disable automatic sequencer #define RADIOLIB_RF69_SEQUENCER_OFF 0b10000000 // 7 7 disable automatic sequencer
#define RADIOLIB_RF69_SEQUENCER_ON 0b10000000 // 7 7 enable 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_OFF 0b00000000 // 6 6 disable Listen mode
#define RADIOLIB_RF69_LISTEN_ON 0b01000000 // 6 6 enable 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) #define RADIOLIB_RF69_LISTEN_ABORT 0b00100000 // 5 5 abort Listen mode (has to be set together with RF69_LISTEN_OFF)