Wiznet / RP2040-HAT-C

Ethernet Example for RP2040
64 stars 35 forks source link

This project no longer works with the latest Pico SDK (1.5.1) #22

Open MrZander opened 7 months ago

MrZander commented 7 months ago

getting_started.md instructs you to follow the Getting started with Raspberry Pi Pico document.

If you follow these instructions, you will download the latest Pico SDK (1.5.1 as of today) and VS Code will be configured accordingly.
However, the 2.2 release for this repo is directly referencing the pico SDK version 1.3.0 (https://github.com/raspberrypi/pico-sdk/tree/2e6142b15b8a75c1227dd3edbe839193b2bf9041)

I was not able to get this to work. I had to manually modify CMakeLists.txt and point to the latest SDK version in order to get the build to work. set(PICO_SDK_PATH "C:/Program Files/Raspberry Pi/Pico SDK v1.5.1/pico-sdk")

Once doing this, the project was able to build.