Standalone mode oak ffc 4p does not work
- Edited
erik Maybe there's also a problem with the current and latest bootloader version. I think so because when I flashed with the version 0.0.18 instead of the latest version 0.0.24 it flashed normally (about 2 minutes with a progress). However, even there standalone mode has not worked yet. Nevertheless, is there a way to downgrade bootloader version?
Furthermore I read about the parameter compress in bootloader.flash(). Should this be true?
- Best Answerset by erik
Maimilian very likely you have only 16MB of memory, and if you don't compress the firmware (bootlaoder.flash(progress, pipeline, compress=True)) it will fail. Try the following:
(ok, err) = bootloader.flash(progress, pipeline)
print(f"Flashing success: {ok}, error: {err}")
And then change to:
(ok, err) = bootloader.flash(progress, pipeline, compress=True)Also note that with 16MB memory, I don't think you'll be able to flash any kind of neural network to the device. The depthai itself takes like 10MB-15MB (when compressed), so you will have a small margin. It might also be that only the USB Bootlaoder doesn't find eMMC flash (usually present on SOMs). I opened Feature Request here.
Maimilian For that, I believe it would be best to open feature request on depthai-core, that even USB bootloader can access eMMC memory (currently, only NETWORK bootlaoder can). I also don't think flashing BoardConfig (needed for UART) is available, perhaps creating separate feature request for that would be useful as well.
Maimilian It's always suggested to write concise and thought-over messages 
- It depends on the opportunity. If you could share the volume opportunity here (or email support@luxonis.com) we can expedite this. Commitment (to buy) may be required. If this is a bachelors thesis then I don't see this being implemented even in 1 year, but if there are 1000s pcs/year opportunity then we would fix this over the weekend. I hope you understand.
- depthai-core github repository.
- No, I don't think so.
- No, standalone mode is the only way.