Compare commits

..

2 Commits

Author SHA1 Message Date
a5b86c94b6 Supprime le remplacement de '\n' par '\r' 2026-07-17 19:19:22 +02:00
5ef0fe17fe Création du dossier de build par défaut 2026-02-15 15:52:50 +01:00
2 changed files with 6 additions and 3 deletions

6
.vscode/tasks.json vendored
View File

@ -2,8 +2,8 @@
"tasks": [
{
"type": "shell",
"command": "cd build; cmake ../; make",
"label": "CMake in build/",
"command": "rm -rf build",
"label": "clean",
"problemMatcher": [],
"group": {
"kind": "build",
@ -12,7 +12,7 @@
},
{
"type": "shell",
"command": "cd build; cmake ../; make Flash",
"command": "mkdir -p build; cd build; cmake ../; make Flash",
"label": "CMake & Make & Flash",
"problemMatcher": [],
"group": {

View File

@ -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)