Erik Moqvist
Erik Moqvist
I would love to add it to the comparison, but I can't figure out how to use it. The documentation mentions the build system Bazel, which I've never used. Could...
I've no interest in learning Bazel myself atm, but let's leave the issue open. If we are lucky someone submits a PR adding upb to the comparison.
@dmolokanov This PR is ready for review.
@dmolokanov When do you think you'll have time to look at this?
@dmolokanov Anything?
Hello, ... 1.5 years later ... I've been designing a PIC programmer recently, [pictools](https://pictools.readthedocs.io/en/latest/), which supports the PIC32MM0256GPM064 family. It's based on an Arduino Due. If you are still interested...
You're right, I implemented a custom PE to allow faster programming using a slightly different protocol between the Due and the PIC32. At least that is the goal. I also...
In the current programmer implementation PGEC, PGED and MCLRN are hard coded to Arduino Due pins D2, D3 and D4. It would be trivial to let the PC select pins...
Well, bit banging the ICSP protocol is likely the bottleneck, not USB, neither the PC. Bit banging many devices in parallel is hard to implement and will likely not increase...
The PE and programmer protocols should be fairly stable now. Here are the specs in case you are still interested in using them: Ramapp (PE): https://github.com/eerimoq/pictools/blob/master/ramapp/README.rst Programmer: https://github.com/eerimoq/pictools/blob/master/programmer/README.rst Have a...