Compare commits
2 Commits
52dfbc2ead
...
a5b86c94b6
| Author | SHA1 | Date | |
|---|---|---|---|
| a5b86c94b6 | |||
| 5ef0fe17fe |
6
.vscode/tasks.json
vendored
6
.vscode/tasks.json
vendored
@ -2,8 +2,8 @@
|
|||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "cd build; cmake ../; make",
|
"command": "rm -rf build",
|
||||||
"label": "CMake in build/",
|
"label": "clean",
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
@ -12,7 +12,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "cd build; cmake ../; make Flash",
|
"command": "mkdir -p build; cd build; cmake ../; make Flash",
|
||||||
"label": "CMake & Make & Flash",
|
"label": "CMake & Make & Flash",
|
||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"group": {
|
"group": {
|
||||||
|
|||||||
@ -29,3 +29,6 @@ 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)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user