From 9a81dd5c58b56d6d1c9b875bd79a90963e0528d7 Mon Sep 17 00:00:00 2001
From: ed8g20 <ed8g20@soton.ac.uk>
Date: Mon, 15 May 2023 11:00:06 +0000
Subject: [PATCH] Update 2 files

- /CMakeLists.txt
- /scope.cpp
---
 CMakeLists.txt | 3 ---
 scope.cpp      | 1 -
 2 files changed, 4 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index eca821e..0788bde 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -28,8 +28,5 @@ include(drivers/st7789/st7789)
 # Pull in pico libraries that we need
 target_link_libraries(scope pico_stdlib hardware_spi hardware_pwm hardware_dma rgbled button pico_display pico_graphics st7789)
 
-pico_enable_stdio_usb(scope 1)
-pico_enable_stdio_uart(scope 0)
-
 # create map/bin/hex file etc.
 pico_add_extra_outputs(scope)
diff --git a/scope.cpp b/scope.cpp
index b0dddd8..d3604ec 100644
--- a/scope.cpp
+++ b/scope.cpp
@@ -25,7 +25,6 @@ Button button_y(PicoDisplay::Y);
 uint8_t red, green, blue;
 
 int main() {
-  stdio_init_all();
 
   led.set_rgb(red, green, blue);
   st7789.set_backlight(255);
-- 
GitLab