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)