Ive been reading up a bit on the PICO W with a possible use for it as a set of networked domestic temperature sensors.
All seems possible with the usual input of hard work and head scratching, but in order to do this each PICO W would need to be uniquely identified and configured to connect to the nearest wifi access pint.
Now obviously this could be done in the source code itself, but really I'd prefer to keep the source code constant and instead use the ability of the flash RAM to appear as a USB storage device to drop a simple configuration file into that, and read it from the pico, but it seems this is not as easy as it sounds.
From my limited research it appears that only the boot loader understands the Flash file format.
Once booted you are on your own, so to speak.
There do seem to be some basic tools in Python, but I prefer to use C if possible.
Anyone played with this at all?