extract debug_log into its own static library; expose log_view iterator instead of raw ring_buffer

This commit is contained in:
Ian Gulliver
2026-05-01 10:33:39 -07:00
parent b82c038091
commit 7000c2e825
7 changed files with 91 additions and 40 deletions

7
debug_log/CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
add_library(debug_log STATIC debug_log.cpp)
target_include_directories(debug_log PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_options(debug_log PRIVATE -Wall -Wextra -Wno-unused-parameter)
target_link_libraries(debug_log PUBLIC pico_stdlib)