-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improved Raspberry Pi Pico support #468
Conversation
Addressed comments indicated in a Slack conversation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cannot get past this error with the blink:
[ 41%] Built target benchmark
[ 41%] Building C object CMakeFiles/Wifi.dir/src/blink.c.obj
/home/davidgarske/GitHub/wolfssl-examples/RPi-Pico/src/blink.c:23:10: fatal error: pico/cyw43_arch.h: No such file or directory
23 | #include "pico/cyw43_arch.h"
| ^~~~~~~~~~~~~~~~~~~
compilation terminated.
make[2]: *** [CMakeFiles/Wifi.dir/build.make:76: CMakeFiles/Wifi.dir/src/blink.c.obj] Error 1
make[1]: *** [CMakeFiles/Makefile2:1840: CMakeFiles/Wifi.dir/all] Error 2
make: *** [Makefile:91: all] Error 2
5ca2521
to
0a86c2d
Compare
OK, lots of improvements in this morning's update:
WiFi compiling issuesSo,
|
Fixes and improvements for RP2040 and added RP2350 support: * Made UART `printf` output optional * Made WiFi support optional * Added compile support for RP2350 * Added compile support for RP2350 in RISC-V mode * Re-wrote README * Fixed compile issues
Another push because I quickly added RISC-V mode for the RP2350 too. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worked amazing!
wolfCrypt test/bench both run and pass.
Tested on MacOS with Intel and Rpi5.
Ran on RP2040
Thank you
Fixes and improvements for RP2040 and added RP2350 support:
printf
output optionalRequires wolfSSL/wolfssl#8153