Skip to content

Commit

Permalink
Bump RF24 from c200b7c to 0aac3d5 (#66)
Browse files Browse the repository at this point in the history
* 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](nRF24/RF24@c200b7c...0aac3d5)

Signed-off-by: dependabot[bot] <support@github.com>

* update RF24 debug toggle option

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brendan <2bndy5@gmail.com>
  • Loading branch information
dependabot[bot] and 2bndy5 authored Jun 16, 2024
1 parent ed6d173 commit 4465e0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions cmake/using_flags.cmake
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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}")
Expand Down

0 comments on commit 4465e0f

Please sign in to comment.