Here is what I discovered today, the timelapse and RC modules are electrically the same but have a different set of files flashed on them. The timelapse module just contains boot.py, while the RC module has many files and a different boot.py. You could easily convert a RC module into a timelapse, but going the other way would involve uploading a lot of files.
TIL: Looking around the timelapse user filesystem I can see marked deleted blocks containing RC module bits. So either the master image started with a filesystem containing RC files, they deleted them, then added the timelapse file (unlikely), or these modules have been re-used and updated (maybe they only manufactured RC modules, then updated those to timelapse as necessary).
This was mentioned somewhere… (one way flash, until flasher software made available) … but for the life of me I can’t find it again… any ideas?
Maybe I wasn’t clear enough… it was mentioned somewhere else (I thought it was officially so, also) that you could use the Core board (included with the timelapse kit) for either timelapse or in another project, but not the other way around until flasher was available. I just can’t find that again, which is why I asked if had any idea (where it was mentioned before).
Wow… really? Without flashing the correct firmware it doesn’t work… who would have thunk it!
Now that I think of it, I think it might have been a note in the box (which was binned last week) for the timelapse kit that said not to flash the Core that came with the timelapse kit until the flasher was available. Anyway, it is just a matter of time … else this will no longer be true
The Multi-Function Core Board is designed for various CyberBrick projects, featuring built-in Bluetooth and WiFi connectivity. It can be quickly connected and disconnected via dual-pin headers, allowing easy switching between different expansion boards. The Core works with the Receiver Shield and the Transmitter Shieldto create a basic remote control system, and it can also pair with the Time-lapse Trigger Shield to capture customized time-lapse videos.
This was mentioned somewhere… (one way flash, until flasher software made available) … but for the life of me I can’t find it again… any ideas?
By comparing the apps at CyberBrick_Controller_Core/src at master · CyberBrick-Official/CyberBrick_Controller_Core · GitHub I assume one can convert in both ways, as long as the frozen Python modules needed and integrated into the firmware binary are included. To check this, @mugglesmuggle can you hook up your TimeLapse core via USB to REPL (e.g. Arduino MicroPython IDE) and see which modules are installed (I did get myself only the “normal” kits, not the timelapse kit, thus cannot check myself):
I already tested that, they are running the same firmware build and the only difference between them is the filesystem contents. It was possible the RC build contained a sense mechanism in one of the bytecode files to determine that it was installed on a timelapse module and switch to timelapse mode, but testing it excluded that possibility. Copying the boot.py from a timelapse build to a RC module has the expected effect.
As mentioned here, the filesytem on the timelapse version still contains remnants of the RC build in deleted files, suggesting that everything starts as a RC module and the timelaps update just deletes the RC files and adds the timelapse file. Why they didn’t only replace boot.py I don’t know.