]> git.gir.st - tmk_keyboard.git/blob - tmk.c
Exceptional handling for PS/2 scan code set 2
[tmk_keyboard.git] / tmk.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/interrupt.h>
30 #include <util/delay.h>
31 #include "usb.h"
32 #include "matrix_skel.h"
33 #include "key_process.h"
34 #include "print.h"
35 #include "debug.h"
36 #include "util.h"
37 #include "timer.h"
38 #include "jump_bootloader.h"
39 #ifdef PS2_MOUSE_ENABLE
40 # include "ps2.h"
41 # include "ps2_mouse.h"
42 #endif
43
44
45 #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
46
47
48 bool debug_enable = false;
49 bool debug_matrix = false;
50 bool debug_keyboard = false;
51 bool debug_mouse = false;
52
53
54 int main(void)
55 {
56 DEBUG_LED_CONFIG;
57 DEBUG_LED_OFF;
58
59 // set for 16 MHz clock
60 CPU_PRESCALE(0);
61
62 // Initialize the USB, and then wait for the host to set configuration.
63 // If the Teensy is powered without a PC connected to the USB port,
64 // this will wait forever.
65 usb_init();
66 while (!usb_configured()) /* wait */ ;
67
68 timer_init();
69
70 matrix_init();
71 matrix_scan();
72 if (matrix_key_count() >= 3) {
73 #ifdef DEBUG_LED
74 for (int i = 0; i < 6; i++) {
75 DEBUG_LED_CONFIG;
76 DEBUG_LED_ON;
77 _delay_ms(500);
78 DEBUG_LED_OFF;
79 _delay_ms(500);
80 }
81 #else
82 _delay_ms(5000);
83 #endif
84 print_enable = true;
85 debug_enable = true;
86 debug_matrix = true;
87 debug_keyboard = true;
88 debug_mouse = true;
89 print("debug enabled.\n");
90 }
91 if (matrix_key_count() >= 4) {
92 print("jump to bootloader...\n");
93 _delay_ms(1000);
94 jump_bootloader(); // not return
95 }
96
97 #ifdef PS2_MOUSE_ENABLE
98 ps2_host_init();
99 ps2_mouse_init();
100 #endif
101
102 while (1) {
103 proc_matrix();
104 }
105 }
Imprint / Impressum