Search found 5 matches
- 21 Mar 2016, 15:48
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389973
- 21 Mar 2016, 15:39
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389973
- 21 Mar 2016, 07:47
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389973
Wow... okay, so, I added some debugging to keymap_common.c: /* translates key to keycode */ uint8_t keymap_key_to_keycode(uint8_t layer, keypos_t key) { xprintf("keymap_key_to_keycode: layer %d, row %d, col %d\n", layer, key.row, key.col); return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]...
- 21 Mar 2016, 01:18
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389973
- 20 Mar 2016, 23:24
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389973
Hello everyone! This is my first post here. I've been trying to make my keyboard work for the past two days -- to no avail. At this point, I suspect the issue is firmware and not hardware. I've ran over the board with a multimeter several dozen times and was unable to detect any shorts. I also teste...