diff --git a/.vscode/launch.json b/.vscode/launch.json index be4534d..d8d6abc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,13 +8,13 @@ "request": "launch", "type": "cortex-debug", "servertype": "bmp", - "device": "RP2040", + "device": "RP2350", // Windows for COM1-COM9 -> COM4 // Windows for COM10-XXX -> \\.\COM20 // Unix -> /dev/ttyACM0 "BMPGDBSerialPort": "\\\\.\\COM20", //"showDevDebugOutput": "raw", - "svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd", + "svdFile": "${env:PICO_SDK_PATH}/src/rp2350/hardware_regs/RP2350.svd", // Work around for stopping at main on restart "runToEntryPoint": "main" }, @@ -27,12 +27,12 @@ "servertype": "openocd", // This may need to be arm-none-eabi-gdb depending on your system "gdbPath" : "${env:PICO_GDB}", - "device": "RP2040", + "device": "RP2350", "openOCDLaunchCommands": [ "adapter speed 5000" ], - "configFiles": ["interface/picoprobe.cfg","target/rp2040.cfg"], - "svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd", + "configFiles": ["interface/picoprobe.cfg","target/rp2350.cfg"], + "svdFile": "${env:PICO_SDK_PATH}/src/rp2350/hardware_regs/RP2350.svd", // Work around for stopping at main on restart "runToEntryPoint": "main" }, @@ -44,12 +44,12 @@ "type": "cortex-debug", "servertype": "openocd", "gdbPath" : "${env:PICO_GDB}", - "device": "RP2040", + "device": "RP2350", "openOCDLaunchCommands": [ "adapter speed 5000" ], - "configFiles": ["interface/cmsis-dap.cfg","target/rp2040.cfg"], - "svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd", + "configFiles": ["interface/cmsis-dap.cfg","target/rp2350.cfg"], + "svdFile": "${env:PICO_SDK_PATH}/src/rp2350/hardware_regs/RP2350.svd", // Work around for stopping at main on restart "runToEntryPoint": "main" }, @@ -61,13 +61,13 @@ "type": "cortex-debug", "servertype": "openocd", "gdbPath" : "${env:PICO_GDB}", - "device": "RP2040", + "device": "RP2350", "openOCDLaunchCommands": [ "adapter speed 5000", "program ${command:cmake.launchTargetFilename} verify reset exit" ], - "configFiles": ["interface/cmsis-dap.cfg","target/rp2040.cfg"], - "svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd" + "configFiles": ["interface/cmsis-dap.cfg","target/rp2350.cfg"], + "svdFile": "${env:PICO_SDK_PATH}/src/rp2350/hardware_regs/RP2350.svd" }, { "name": "Debug (J-Link)", @@ -75,12 +75,12 @@ "executable": "${command:cmake.launchTargetPath}", "request": "launch", "type": "cortex-debug", - "serverpath": "C:/Program Files/SEGGER/JLink_V782d/JLinkGDBServerCL.exe", + "serverpath": "C:/Program Files/SEGGER/JLink_V822d/JLinkGDBServerCL.exe", "servertype": "jlink", "gdbPath": "${env:PICO_GDB}", - "device": "RP2040_M0_0", + "device": "RP2350_M33_0", "interface": "swd", - "svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd", + "svdFile": "${env:PICO_SDK_PATH}/src/rp2350/hardware_regs/RP2350.svd", "runToEntryPoint": "main" } ] diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c2b965..9a47aef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.12) -set(ENV{PICO_PLATFORM} "rp2040") +set(ENV{PICO_PLATFORM} "rp2350") # Pull in SDK (must be before project) include(pico_sdk_import.cmake) diff --git a/doc/getting-started-with-pico.pdf b/doc/getting-started-with-pico.pdf deleted file mode 100644 index ed77e73..0000000 --- a/doc/getting-started-with-pico.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dce30cb02c9911ba362c5ab0d1395935fedd76b1c685f6f886d21a44e829833a -size 33616363 diff --git a/doc/pico-2-datasheet.pdf b/doc/pico-2-datasheet.pdf new file mode 100644 index 0000000..0b00fa6 --- /dev/null +++ b/doc/pico-2-datasheet.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e146444503b6d703efc811a959981cb30f6768e445a62bc81456a848d6ac4e +size 3466700 diff --git a/doc/pico-datasheet.pdf b/doc/pico-datasheet.pdf deleted file mode 100644 index 6fa6b25..0000000 --- a/doc/pico-datasheet.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c3fb01e1cc2ea9d40e85a8abf0eb4c805e46cb70bd28195b846ca135765ad79c -size 17358931 diff --git a/doc/rp2040-datasheet.pdf b/doc/rp2040-datasheet.pdf deleted file mode 100644 index df0254b..0000000 --- a/doc/rp2040-datasheet.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:be56fbb75ba0ae9e26558a73c93ac3e75c2ad4e6878d3b6703de2a76d886ea8c -size 5301205 diff --git a/doc/rp2350-datasheet.pdf b/doc/rp2350-datasheet.pdf new file mode 100644 index 0000000..93f7d78 --- /dev/null +++ b/doc/rp2350-datasheet.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:680a31b3b2d82d1acf5cd6d61490fca27af230df35df4987233210e1f2bfc5fb +size 7932126