Closed fivdi closed 3 years ago
What platform were you on?
A Raspberry Pi 4
pi@raspberrypi:~ $ uname -a
Linux raspberrypi 5.10.17-v7l+ #1414 SMP Fri Apr 30 13:20:47 BST 2021 armv7l GNU/Linux
Not sure why you moved this. It's a pico-sdk issue. I have it fixed locally.
Not sure why you moved this. It's a pico-sdk issue. I have it fixed locally.
Because the issue started out with… "Trying to install with pico_setup.sh".
Ah ok 😄
This is the important bit:
I think this is happening because the declaratrion of
pico_get_unique_board_id_string
inheader unique_id.h
(see here) uses typeuint
but the headerunique_id.h
doesn't includepico.h
ortypes.h
and therfore doesn't know what auint
is.
merged here, but i have added a pico.h include to picoprobe for the interim
merged into develop
Trying to install with pico_setup.sh (https://raw.githubusercontent.com/raspberrypi/pico-setup/master/pico_setup.sh) results in this error:
I think this is happening because the declaratrion of
pico_get_unique_board_id_string
inheader unique_id.h
(see here) uses typeuint
but the headerunique_id.h
doesn't includepico.h
ortypes.h
and therfore doesn't know what auint
is.