Hiroyuki OYAMA
Hiroyuki OYAMA
Hello, this is still at the proof of concept stage, but I have implemented a sample that deploys littlefs to the onboard flash memory of the Raspberry Pi Pico while...
Thank you. As you pointed out, both Copy and Update from the USB host are initially sent as unnamed data blocks. Therefore, I am considering a procedure to create a...
This is the project I am using and the unit testing is done on the host side: https://github.com/oyama/pico-kvstore Here is the code that uses pico_mbedtls_crypto: https://github.com/oyama/pico-kvstore/blob/main/src/kvstore_securekvs.c Unit tests are run...
This is a sample code to test a single SHA256 test vector. To build it on the host side, you also need a mock of pico_rand as follows https://github.com/raspberrypi/pico-sdk/compare/develop...oyama:pico-sdk:fix/enable-pico_mbedtls-in-host-build?expand=1 main.c...
Thank you for your comment, pico_filesystem VFS linked `write(fileno(stdout), ...);` returns a `9: Bad file number` error or write to a user opened file. the process is passed to the...
> A bad point of the current pico_filesystem VFS is that file descriptors are issued from `0` when a file is opened. This can conflict with `STDIN_FILENO`/`STDOUT_FILENO`/`STDERR_FINENO` of the standard...
To avoid inhibiting pico_stdio, file descriptors `0` to `2` are passed to pico_stdio instead of being processed by pico_filesystem.
Thanks for the 2.0.0 release! This is a good hook point. I'll modify it to fit this API and test it.
I finally got my hands on Pico 2 and have made the following fixes and verifications - Changed PR to conform to pico-sdk 2.0.0 - verified that `pico-vfs`, the core...
Thank you for your comment. My response is delayed as I was on a long business trip. The reason for registering the littlefs submodule in both pico-vfs and pico-sdk is...