From d9d37df06835bb56f37b68b089ff7b92af45cdd2 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Fri, 14 May 2021 12:58:16 +0100 Subject: [PATCH] Enable stdio UART for IOE examples --- examples/breakout_encoder/CMakeLists.txt | 2 +- examples/breakout_ioexpander/adc/CMakeLists.txt | 2 +- examples/breakout_ioexpander/button/CMakeLists.txt | 2 +- examples/breakout_ioexpander/servo/CMakeLists.txt | 2 +- examples/breakout_potentiometer/CMakeLists.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/breakout_encoder/CMakeLists.txt b/examples/breakout_encoder/CMakeLists.txt index 5cb31bfc..af459279 100644 --- a/examples/breakout_encoder/CMakeLists.txt +++ b/examples/breakout_encoder/CMakeLists.txt @@ -7,7 +7,7 @@ add_executable( # enable usb output, disable uart output pico_enable_stdio_usb(${OUTPUT_NAME} 1) -pico_enable_stdio_uart(${OUTPUT_NAME} 0) +pico_enable_stdio_uart(${OUTPUT_NAME} 1) # Pull in pico libraries that we need target_link_libraries(${OUTPUT_NAME} pico_stdlib breakout_encoder) diff --git a/examples/breakout_ioexpander/adc/CMakeLists.txt b/examples/breakout_ioexpander/adc/CMakeLists.txt index ecba6fa9..89a1da66 100644 --- a/examples/breakout_ioexpander/adc/CMakeLists.txt +++ b/examples/breakout_ioexpander/adc/CMakeLists.txt @@ -7,7 +7,7 @@ add_executable( # enable usb output, disable uart output pico_enable_stdio_usb(${OUTPUT_NAME} 1) -pico_enable_stdio_uart(${OUTPUT_NAME} 0) +pico_enable_stdio_uart(${OUTPUT_NAME} 1) # Pull in pico libraries that we need target_link_libraries(${OUTPUT_NAME} pico_stdlib breakout_ioexpander) diff --git a/examples/breakout_ioexpander/button/CMakeLists.txt b/examples/breakout_ioexpander/button/CMakeLists.txt index c20a8f08..6b702f74 100644 --- a/examples/breakout_ioexpander/button/CMakeLists.txt +++ b/examples/breakout_ioexpander/button/CMakeLists.txt @@ -7,7 +7,7 @@ add_executable( # enable usb output, disable uart output pico_enable_stdio_usb(${OUTPUT_NAME} 1) -pico_enable_stdio_uart(${OUTPUT_NAME} 0) +pico_enable_stdio_uart(${OUTPUT_NAME} 1) # Pull in pico libraries that we need target_link_libraries(${OUTPUT_NAME} pico_stdlib breakout_ioexpander) diff --git a/examples/breakout_ioexpander/servo/CMakeLists.txt b/examples/breakout_ioexpander/servo/CMakeLists.txt index bb2bb7b7..611f2335 100644 --- a/examples/breakout_ioexpander/servo/CMakeLists.txt +++ b/examples/breakout_ioexpander/servo/CMakeLists.txt @@ -7,7 +7,7 @@ add_executable( # enable usb output, disable uart output pico_enable_stdio_usb(${OUTPUT_NAME} 1) -pico_enable_stdio_uart(${OUTPUT_NAME} 0) +pico_enable_stdio_uart(${OUTPUT_NAME} 1) # Pull in pico libraries that we need target_link_libraries(${OUTPUT_NAME} pico_stdlib breakout_ioexpander) diff --git a/examples/breakout_potentiometer/CMakeLists.txt b/examples/breakout_potentiometer/CMakeLists.txt index e7067e04..a2484df1 100644 --- a/examples/breakout_potentiometer/CMakeLists.txt +++ b/examples/breakout_potentiometer/CMakeLists.txt @@ -7,7 +7,7 @@ add_executable( # enable usb output, disable uart output pico_enable_stdio_usb(${OUTPUT_NAME} 1) -pico_enable_stdio_uart(${OUTPUT_NAME} 0) +pico_enable_stdio_uart(${OUTPUT_NAME} 1) # Pull in pico libraries that we need target_link_libraries(${OUTPUT_NAME} pico_stdlib breakout_potentiometer)