Compare commits

..

No commits in common. "a5b86c94b61f9a414eba4d536876a2b1fb997579" and "52dfbc2ead1a2b1db6c4a46e13f3c9345df2d39f" have entirely different histories.

2 changed files with 3 additions and 6 deletions

6
.vscode/tasks.json vendored
View File

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

View File

@ -29,6 +29,3 @@ add_custom_target(Flash
DEPENDS Modele_RPiPico DEPENDS Modele_RPiPico
COMMAND sudo picotool load -f ${PROJECT_BINARY_DIR}/Modele_RPiPico.uf2 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)