]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - mykey.c
add jump_bootloader.
[max/tmk_keyboard.git] / mykey.c
1 /* 2010/08/23 noname
2  * keyboard firmware based on PJRC USB keyboard example
3  */
4 /* Keyboard example with debug channel, for Teensy USB Development Board
5  * http://www.pjrc.com/teensy/usb_keyboard.html
6  * Copyright (c) 2008 PJRC.COM, LLC
7  * 
8  * Permission is hereby granted, free of charge, to any person obtaining a copy
9  * of this software and associated documentation files (the "Software"), to deal
10  * in the Software without restriction, including without limitation the rights
11  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12  * copies of the Software, and to permit persons to whom the Software is
13  * furnished to do so, subject to the following conditions:
14  * 
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  * 
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24  * THE SOFTWARE.
25  */
26
27 #include <stdbool.h>
28 #include <avr/io.h>
29 #include <avr/pgmspace.h>
30 #include <avr/interrupt.h>
31 #include <util/delay.h>
32
33 #include "usb_device.h"
34 #include "print.h"
35 #include "matrix.h"
36 #include "keymap.h"
37 #include "jump_bootloader.h"
38
39 #define LED_CONFIG    (DDRD |= (1<<6))
40 #define LED_ON        (PORTD &= ~(1<<6))
41 #define LED_OFF        (PORTD |= (1<<6))
42 #define CPU_PRESCALE(n)    (CLKPR = 0x80, CLKPR = (n))
43
44
45 uint16_t idle_count=0;
46
47
48
49 int main(void)
50 {
51     bool modified = false;
52     bool has_ghost = false;
53     uint8_t key_index = 0;
54
55     // set for 16 MHz clock
56     CPU_PRESCALE(0);
57
58     matrix_init();
59
60
61     // Initialize the USB, and then wait for the host to set configuration.
62     // If the Teensy is powered without a PC connected to the USB port,
63     // this will wait forever.
64     usb_init();
65     while (!usb_configured()) /* wait */ ;
66
67     // Wait an extra second for the PC's operating system to load drivers
68     // and do whatever it does to actually be ready for input
69     _delay_ms(1000);
70
71     // Configure timer 0 to generate a timer overflow interrupt every
72     // 256*1024 clock cycles, or approx 61 Hz when using 16 MHz clock
73     // This demonstrates how to use interrupts to implement a simple
74     // inactivity timeout.
75     TCCR0A = 0x00;
76     TCCR0B = 0x05;
77     TIMSK0 = (1<<TOIE0);
78
79     print("keyboard firmware 0.1 for t.m.k.\n");
80
81     while (1) {
82         int layer = 0;
83         uint8_t row, col, code;
84
85         matrix_scan();
86         layer = get_layer();
87
88         modified = matrix_is_modified();
89         has_ghost = matrix_has_ghost();
90
91         // doesnt send keys during ghost occurs
92         if (modified && !has_ghost) {
93             key_index = 0;
94             keyboard_modifier_keys = 0;
95             for (int i = 0; i < 6; i++) keyboard_keys[i] = KB_NO;
96
97             for (row = 0; row < MATRIX_ROWS; row++) {
98                 for (col = 0; col < MATRIX_COLS; col++) {
99                     if (matrix[row] & 1<<col) continue;
100
101                     code = get_keycode(layer, row, col);
102                     if (code == KB_NO) {
103                         continue;
104                     } else if (KB_LCTRL <= code && code <= KB_RGUI) {
105                         // modifier keycode: 0xE0-0xE7
106                         keyboard_modifier_keys |= 1<<(code & 0x07);
107                     } else {
108                         if (key_index < 6)
109                             keyboard_keys[key_index] = code;
110                         key_index++;
111                     }
112                 }
113             }
114
115             // run bootloader when 4 left modifier keys down
116             if (keyboard_modifier_keys == (MOD_LCTRL | MOD_LSHIFT | MOD_LALT | MOD_LGUI)) {
117                 print("jump to bootloader...\n");
118                 _delay_ms(1000);
119                 jump_bootloader();
120             }
121
122             if (key_index > 6) {
123                 //Rollover
124             }
125
126             usb_keyboard_send();
127
128
129             // variables shared with interrupt routines must be
130             // accessed carefully so the interrupt routine doesn't
131             // try to use the variable in the middle of our access
132             cli();
133             idle_count = 0;
134             sei();
135         }
136
137         // print matrix state for debug
138         if (modified) {
139             print("\nr/c 01234567\n");
140             for (row = 0; row < MATRIX_ROWS; row++) {
141                 phex(row); print(": ");
142                 pbin_reverse(matrix[row]);
143                 if (matrix_has_ghost_in_row(row)) {
144                     print(" <ghost");
145                 }
146                 print("\n");
147             }
148             print("keys: ");
149             for (int i = 0; i < 6; i++) { phex(keyboard_keys[i]); print(" "); }
150             print("\n");
151             print("mod: "); phex(keyboard_modifier_keys); print("\n");
152         }
153
154         // now the current pins will be the previous, and
155         // wait a short delay so we're not highly sensitive
156         // to mechanical "bounce".
157         _delay_ms(2);
158     }
159 }
160
161 // This interrupt routine is run approx 61 times per second.
162 // A very simple inactivity timeout is implemented, where we
163 // will send a space character and print a message to the
164 // hid_listen debug message window.
165 ISR(TIMER0_OVF_vect)
166 {
167     idle_count++;
168     if (idle_count > 61 * 8) {
169         idle_count = 0;
170         print(".");
171     }
172 }