Search found 6 matches
- 17 Aug 2015, 23:26
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389830
@Boywonder: I'm not sure this will solve your problem (which might be a diode backwards?), but you should also initialise the C7 pin you're using for column 15: DDRC &= ~(1<<7); PORTC |= (1<<7); in the init_cols function. EDIT: (What I wrote before in the edit was completely wrong.) Thank you very ...
- 17 Aug 2015, 22:12
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389830
Ahh success..... almost. so now almost everything works, except row 3 is firing 1qaz(alt), b doesn't work, and when i press g it also triggers aHalvar wrote: ↑OK, then check the select_row() function. You're setting F0 F1 F2 F3 F5 there at the moment.
Where could these problems originate from?
- 17 Aug 2015, 19:53
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389830
- 17 Aug 2015, 18:55
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389830
The important part are the first error messages shown: In file included from keymap_poker.c:1: keymap_poker.c:5: warning: implicit declaration of function 'KEYMAP' So what's going on in your keymap_poker.c file around line around line 5? Show us the first 10 lines or so... Thanks for responding! So...
- 15 Aug 2015, 21:29
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389830
So I figured out how to compile my code, however now I get errors saying that say this -------- begin -------- avr-gcc (WinAVR 20100110) 4.3.3 Copyright (C) 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTAB...
- 15 Aug 2015, 19:35
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389830
Could Someone help me compile my code? I have no clue how to and I honestly don't understand how I would go about compiling it. Any help or advice or tutorial would be greatly appreciated. I modified all the code in the gh60 directory and the poker keymap directory, just like the tutorial, however I...