Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump RF24 from c200b7c to 0aac3d5 #66

Merged
merged 2 commits into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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