picoprobe working dma not

This commit is contained in:
matthias wagner
2023-05-21 17:31:21 +02:00
parent 2c4cfe8e27
commit 70b67e297b
79 changed files with 12891 additions and 20185 deletions

10
.vscode/launch.json vendored
View File

@@ -12,20 +12,20 @@
"gdbPath" : "gdb",
"device": "RP2040",
"configFiles": [
// This may need to be "interface/picoprobe.cfg" for some previous builds
"interface/cmsis-dap.cfg",
"target/rp2040-core0.cfg"
"target/rp2040.cfg"
],
"openOCDLaunchCommands": [
"transport select swd",
"adapter speed 4000"
"adapter speed 5000",
],
"svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd",
"runToEntryPoint": "main",
// Work around for stopping at main on restart
"postRestartCommands": [
"monitor reset init", // orig: "break main",
"break main",
"continue"
]
],
}
]
}