From 7f37af837bb059141deddb0cbe6806f4f3029b17 Mon Sep 17 00:00:00 2001 From: graham sanderson Date: Sat, 20 Jul 2024 20:58:34 -0500 Subject: [PATCH] add missing rtt cmake functions for host --- src/host/pico_stdio/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/host/pico_stdio/CMakeLists.txt b/src/host/pico_stdio/CMakeLists.txt index 82a314831..e05bfb918 100644 --- a/src/host/pico_stdio/CMakeLists.txt +++ b/src/host/pico_stdio/CMakeLists.txt @@ -16,5 +16,7 @@ if (NOT TARGET pico_stdio) endfunction() function(pico_enable_stdio_semihosting) endfunction() + function(pico_enable_stdio_rtt) + endfunction() endif()