From 4465e0f15fe0e0f722c4d1fb60ad27bd68434664 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 19:17:06 -0700 Subject: [PATCH] Bump RF24 from `c200b7c` to `0aac3d5` (#66) * Bump RF24 from `c200b7c` to `0aac3d5` Bumps [RF24](https://github.com/nRF24/RF24) from `c200b7c` to `0aac3d5`. - [Release notes](https://github.com/nRF24/RF24/releases) - [Commits](https://github.com/nRF24/RF24/compare/c200b7cc8e13e70a2ae40bed8e4364de35c891d9...0aac3d58e54c10d4adef351366217577456b6f50) Signed-off-by: dependabot[bot] * update RF24 debug toggle option --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Brendan <2bndy5@gmail.com> --- RF24 | 2 +- cmake/using_flags.cmake | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/RF24 b/RF24 index c200b7c..0aac3d5 160000 --- a/RF24 +++ b/RF24 @@ -1 +1 @@ -Subproject commit c200b7cc8e13e70a2ae40bed8e4364de35c891d9 +Subproject commit 0aac3d58e54c10d4adef351366217577456b6f50 diff --git a/cmake/using_flags.cmake b/cmake/using_flags.cmake index b1eda4c..0aaa7a5 100644 --- a/cmake/using_flags.cmake +++ b/cmake/using_flags.cmake @@ -1,7 +1,7 @@ # ###################### DEBUG (& EXTRA) FLAGS ###################### # ## RF24 core specific options -# option(RF24_DEBUG "enable/disable debugging output for RF24 lib" OFF) +option(RF24_DEBUG "enable/disable debugging output for RF24 lib" OFF) # ## RF24Network specific options option(RF24NETWORK_DEBUG "enable/disable debugging output for RF24Network lib" OFF) @@ -64,10 +64,10 @@ option(MESH_DEBUG_MINIMAL "enable/disable minimal debugging output for RF24Mesh # function to apply flags to applicable targets function(apply_flags target) # apply RF24 flags to cpp_rf24 target - # if(RF24_DEBUG) - # message(STATUS "RF24_DEBUG asserted for ${target}") - # target_compile_definitions(${target} PUBLIC SERIAL_DEBUG) - # endif() + if(RF24_DEBUG) + message(STATUS "RF24_DEBUG asserted for ${target}") + target_compile_definitions(${target} PUBLIC SERIAL_DEBUG) + endif() # pass driver used to expose as a constant in rf24 module. target_compile_definitions(${target} PUBLIC RF24_DRIVER="${RF24_DRIVER}")