From 80b03d4e8e093af34b30c3c76ac4d17f500c50af Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 22 Aug 2022 13:28:27 +0200 Subject: [PATCH] Removed unused libraries. Signed-off-by: Pol Henarejos --- firmware/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/CMakeLists.txt b/firmware/CMakeLists.txt index 61dfcf5..8072a6c 100644 --- a/firmware/CMakeLists.txt +++ b/firmware/CMakeLists.txt @@ -2,7 +2,7 @@ add_executable(pico_rng pico_rng.c ) -target_link_libraries(pico_rng PRIVATE pico_stdlib hardware_resets hardware_irq hardware_adc) +target_link_libraries(pico_rng PRIVATE pico_stdlib hardware_adc) pico_enable_stdio_uart(pico_rng 1) pico_add_extra_outputs(pico_rng)