You might try using qmk_toolbox. This worked for me on a Pro Micro.
https://github.com/qmk/qmk_toolbox/releases
You might try using qmk_toolbox. This worked for me on a Pro Micro.
Usually the controller chip schematics are public. Use a multimeter to trace back cable leads to what is VCC and GND. For Data and Clock, just try both options until it works ....vibierendi13 wrote: 11 Nov 2020, 08:44 how did you guys determine that line is clock data + 5v when the board is unmarked
thanks for rep bro...i trykmnov2017 wrote: 11 Nov 2020, 08:57Usually the controller chip schematics are public. Use a multimeter to trace back cable leads to what is VCC and GND. For Data and Clock, just try both options until it works ....vibierendi13 wrote: 11 Nov 2020, 08:44 how did you guys determine that line is clock data + 5v when the board is unmarked
Code: Select all
avrdude -p m32u4 -P /dev/ttyS2 -c avr109 -U flash:w:adds_ascii_usb_atmega32u4_numpad_fkey_remap.hex
Code: Select all
avrdude: ser_open(): can't open device "/dev/ttyS2": The system cannot find the path specified.
Code: Select all
avrdude -p m32u4 -P COM3 -c avr109 -U flash:w:adds_ascii_usb_atmega32u4_numpad_fkey_remap.hex
Sorry for the late reply, I was off for some years ...pandrew wrote: 05 Sep 2020, 03:49 Hey All,
Just in case anyone is looking for an experimental version that might work with 3V3 Pro Micros, please see attached .hex file.
Details:
I started with the following .hex file: resources/slightly-changed-sc-v1-12/15676
Which I found a link to here: http://joefreeman.weebly.com/uploads/1/ ... _micro.pdf
This appears to be a modified version that exposes the reset line too on PB6 (read that .pdf), the default release I think has it on a pin that is not accessible on the pro micro, but it's otherwise accessible by other atmega32u4 boards. [...]
Note2: I have not tested this with a keyboard, and it's not guaranteed that this will work with the keyboard, there could be other timing sensitive elements in the firmware that assume that the CPU is running at 16MHz, in which case more mods are needed.