From a5b86c94b61f9a414eba4d536876a2b1fb997579 Mon Sep 17 00:00:00 2001 From: Samuel Date: Fri, 17 Jul 2026 19:19:22 +0200 Subject: [PATCH] Supprime le remplacement de '\n' par '\r' --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f9d47f6..112da76 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,3 +29,6 @@ add_custom_target(Flash DEPENDS Modele_RPiPico COMMAND sudo picotool load -f ${PROJECT_BINARY_DIR}/Modele_RPiPico.uf2 ) + +# Suppression de la conversion automatique LF -> CRLF +add_definitions(-DPICO_STDIO_ENABLE_CRLF_SUPPORT=0)