From 043f244fdee4471014eb6a7c6cc0adfdbb57e466 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 13:14:31 +0000 Subject: [PATCH 1/2] Bump the rf24-submodules group across 1 directory with 3 updates Bumps the rf24-submodules group with 3 updates in the / directory: [RF24](https://github.com/nRF24/RF24), [RF24Network](https://github.com/nRF24/RF24Network) and [RF24Mesh](https://github.com/nRF24/RF24Mesh). Updates `RF24` from `4016a31` to `8684b54` - [Release notes](https://github.com/nRF24/RF24/releases) - [Commits](https://github.com/nRF24/RF24/compare/4016a31ecdc8c9c642d5ca29009cba3211ee06f4...8684b54fd839bd0b12e0f049f36af5cb2a19b2b3) Updates `RF24Network` from `d1e5ceb` to `f06c267` - [Release notes](https://github.com/nRF24/RF24Network/releases) - [Commits](https://github.com/nRF24/RF24Network/compare/d1e5ceb5db6b6fd88a5fa183929fef30bdf01ccf...f06c267f131a1d4b926f5df6d1c78ca05d344774) Updates `RF24Mesh` from `525facc` to `d731b47` - [Release notes](https://github.com/nRF24/RF24Mesh/releases) - [Commits](https://github.com/nRF24/RF24Mesh/compare/525facce480eb44224e8b5d73ebde48bc146d668...d731b4710acd69a1eed988d28c015f348e1a5019) --- updated-dependencies: - dependency-name: RF24 dependency-version: 74b300d31f4d79e6570f1a8a7ed473d6b059b4a1 dependency-type: direct:production dependency-group: rf24-submodules - dependency-name: RF24Mesh dependency-version: ac1574b496e156be6a4019e7f2bf0cdde882f64b dependency-type: direct:production dependency-group: rf24-submodules - dependency-name: RF24Network dependency-version: af22983dd35692e5baf1359d1ce2802347bb09e1 dependency-type: direct:production dependency-group: rf24-submodules ... Signed-off-by: dependabot[bot] --- RF24 | 2 +- RF24Mesh | 2 +- RF24Network | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/RF24 b/RF24 index 4016a31..8684b54 160000 --- a/RF24 +++ b/RF24 @@ -1 +1 @@ -Subproject commit 4016a31ecdc8c9c642d5ca29009cba3211ee06f4 +Subproject commit 8684b54fd839bd0b12e0f049f36af5cb2a19b2b3 diff --git a/RF24Mesh b/RF24Mesh index 525facc..d731b47 160000 --- a/RF24Mesh +++ b/RF24Mesh @@ -1 +1 @@ -Subproject commit 525facce480eb44224e8b5d73ebde48bc146d668 +Subproject commit d731b4710acd69a1eed988d28c015f348e1a5019 diff --git a/RF24Network b/RF24Network index d1e5ceb..f06c267 160000 --- a/RF24Network +++ b/RF24Network @@ -1 +1 @@ -Subproject commit d1e5ceb5db6b6fd88a5fa183929fef30bdf01ccf +Subproject commit f06c267f131a1d4b926f5df6d1c78ca05d344774 From 354b6fe206efa022c218f05124b57e4d1a60cc3d Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Fri, 24 Apr 2026 19:17:47 -0700 Subject: [PATCH 2/2] fix changes in namespace --- src/pyRF24.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pyRF24.h b/src/pyRF24.h index ffa5944..a600a5b 100644 --- a/src/pyRF24.h +++ b/src/pyRF24.h @@ -3,6 +3,7 @@ #include #include #include +using namespace nRF24L01; namespace py = pybind11; @@ -175,7 +176,7 @@ class RF24Wrapper : public RF24 bool isPowerUp() { - return read_register(NRF_CONFIG) & _BV(PWR_UP); + return read_register(CONFIG) & _BV(PWR_UP); } void set_pa_level(rf24_pa_dbm_e level) @@ -217,7 +218,7 @@ class RF24Wrapper : public RF24 bool isListening() { - return read_register(NRF_CONFIG) & _BV(PRIM_RX); + return read_register(CONFIG) & _BV(PRIM_RX); } void listen(const bool enable)