pico-stuff icon indicating copy to clipboard operation
pico-stuff copied to clipboard

Files not found (missing dhserver.h)

Open DatanoiseTV opened this issue 2 years ago • 2 comments

https://github.com/luigifcruz/pico-stuff/blob/main/lib/networking gives me a 404.

fatal error: dhserver.h: No such file or directory
   31 | #include "dhserver.h"

DatanoiseTV avatar Nov 14 '22 17:11 DatanoiseTV

Are you using the patched version of the Pico SDK? The standard one doesn't include the necessary headers for this app in particular.

luigifcruz avatar Jan 08 '23 01:01 luigifcruz

If anyone else stumbles here, this is what worked for me. After https://github.com/raspberrypi/pico-sdk/pull/334 has been resolved, it won't be needed anymore.

Fetch the patched SDK:

git submodule set-branch --branch patch-piccolosdr pico-sdk
git submodule update --remote
git submodule update --init --recursive

Then continue as usual.

mordae avatar Mar 18 '23 12:03 mordae