From 35059a86fff8ec7ed737ab9ac5369739d322216a Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 14 Feb 2025 22:03:10 +0100 Subject: [PATCH] [SX126x] Remove node address methods from header (#1422) --- src/modules/SX126x/SX126x.h | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/modules/SX126x/SX126x.h b/src/modules/SX126x/SX126x.h index 6198029f..d06d37e5 100644 --- a/src/modules/SX126x/SX126x.h +++ b/src/modules/SX126x/SX126x.h @@ -889,27 +889,6 @@ class SX126x: public PhysicalLayer { */ int16_t setSyncBits(uint8_t *syncWord, uint8_t bitsLen); - /*! - \brief Sets node address. Calling this method will also enable address filtering for node address only. - \param addr Node address to be set. - \returns \ref status_codes - */ - int16_t setNodeAddress(uint8_t addr); - - /*! - \brief Sets broadcast address. Calling this method will also enable address - filtering for node and broadcast address. - \param broadAddr Node address to be set. - \returns \ref status_codes - */ - int16_t setBroadcastAddress(uint8_t broadAddr); - - /*! - \brief Disables address filtering. Calling this method will also erase previously set addresses. - \returns \ref status_codes - */ - int16_t disableAddressFiltering(); - /*! \brief Sets CRC configuration. \param len CRC length in bytes, Allowed values are 1 or 2, set to 0 to disable CRC.