Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tmk.c 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. #include <stdbool.h>
  27. #include <avr/io.h>
  28. #include <avr/pgmspace.h>
  29. #include <avr/interrupt.h>
  30. #include <util/delay.h>
  31. #include "usb.h"
  32. #include "usb_keyboard.h"
  33. #include "usb_mouse.h"
  34. #include "print.h"
  35. #include "matrix.h"
  36. #include "keymap_hhkb.h"
  37. #include "jump_bootloader.h"
  38. // for teensy 2.0
  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. #define MOUSE_MOVE_UNIT 10
  44. #define MOUSE_DELAY_MS 200
  45. #define MOUSE_DELAY_ACC 5
  46. static void print_matrix(void);
  47. uint16_t idle_count=0;
  48. int main(void)
  49. {
  50. // set for 16 MHz clock
  51. CPU_PRESCALE(0);
  52. // Initialize the USB, and then wait for the host to set configuration.
  53. // If the Teensy is powered without a PC connected to the USB port,
  54. // this will wait forever.
  55. usb_init();
  56. while (!usb_configured()) /* wait */ ;
  57. // Wait an extra second for the PC's operating system to load drivers
  58. // and do whatever it does to actually be ready for input
  59. // needs such long time in my PC.
  60. /* wait for debug print. no need for normal use */
  61. for (int i =0; i < 6; i++) {
  62. LED_CONFIG;
  63. LED_ON;
  64. _delay_ms(500);
  65. LED_OFF;
  66. _delay_ms(500);
  67. }
  68. // Configure timer 0 to generate a timer overflow interrupt every
  69. // 256*1024 clock cycles, or approx 61 Hz when using 16 MHz clock
  70. // This demonstrates how to use interrupts to implement a simple
  71. // inactivity timeout.
  72. TCCR0A = 0x00;
  73. TCCR0B = 0x05;
  74. TIMSK0 = (1<<TOIE0);
  75. matrix_init();
  76. bool modified = false;
  77. bool has_ghost = false;
  78. int layer = 0;
  79. int key_index = 0;
  80. uint8_t mouse_x = 0;
  81. uint8_t mouse_y = 0;
  82. uint8_t mouse_btn = 0;
  83. int8_t mouse_wheel = 0;
  84. int8_t mouse_hwheel = 0;
  85. int mouse_repeat = 0;
  86. print("\nt.m.k. keyboard 1.0 for hhkb\n");
  87. while (1) {
  88. matrix_scan();
  89. modified = matrix_is_modified();
  90. has_ghost = matrix_has_ghost();
  91. layer = get_layer();
  92. // print matrix state for debug
  93. if (modified) {
  94. print_matrix();
  95. // LED flash for debug
  96. LED_CONFIG;
  97. LED_ON;
  98. }
  99. keyboard_modifier_keys = 0;
  100. for (int i = 0; i < 3; i++) keyboard_keys[i] = KB_NO;
  101. key_index = 0;
  102. mouse_x = 0;
  103. mouse_y = 0;
  104. mouse_btn = 0;
  105. mouse_wheel = 0;
  106. mouse_hwheel = 0;
  107. // convert matrix state to HID report
  108. for (int row = 0; row < MATRIX_ROWS; row++) {
  109. for (int col = 0; col < MATRIX_COLS; col++) {
  110. if (matrix[row] & 1<<col) continue;
  111. uint8_t code = get_keycode(layer, row, col);
  112. if (code == KB_NO) {
  113. continue;
  114. } else if (KB_LCTRL <= code && code <= KB_RGUI) {
  115. // modifier keys(0xE0-0xE7)
  116. keyboard_modifier_keys |= 1<<(code & 0x07);
  117. } else if (code >= MS_UP) {
  118. // mouse
  119. if (code == MS_UP) mouse_y -= MOUSE_MOVE_UNIT + (mouse_repeat < 50 ? mouse_repeat/5 : 10);
  120. if (code == MS_DOWN) mouse_y += MOUSE_MOVE_UNIT + (mouse_repeat < 50 ? mouse_repeat/5 : 10);
  121. if (code == MS_LEFT) mouse_x -= MOUSE_MOVE_UNIT + (mouse_repeat < 50 ? mouse_repeat/5 : 10);
  122. if (code == MS_RIGHT) mouse_x += MOUSE_MOVE_UNIT + (mouse_repeat < 50 ? mouse_repeat/5 : 10);
  123. if (code == MS_BTN1) mouse_btn |= 1<<0;
  124. if (code == MS_BTN2) mouse_btn |= 1<<1;
  125. if (code == MS_BTN3) mouse_btn |= 1<<2;
  126. if (code == MS_BTN4) mouse_btn |= 1<<3;
  127. if (code == MS_BTN5) mouse_btn |= 1<<4;
  128. if (code == MS_WH_UP) mouse_wheel += 1;
  129. if (code == MS_WH_DOWN) mouse_wheel -= 1;
  130. if (code == MS_WH_LEFT) mouse_hwheel += 1;
  131. if (code == MS_WH_RIGHT) mouse_hwheel -= 1;
  132. } else {
  133. // normal keys
  134. if (key_index < 6)
  135. keyboard_keys[key_index] = code;
  136. key_index++;
  137. }
  138. }
  139. }
  140. if (!has_ghost) {
  141. // when 4 left modifier keys down
  142. if (keyboard_modifier_keys == (MOD_LCTRL | MOD_LSHIFT | MOD_LALT | MOD_LGUI)) {
  143. // cancel all keys
  144. keyboard_modifier_keys = 0;
  145. for (int i = 0; i < 6; i++) keyboard_keys[i] = KB_NO;
  146. usb_keyboard_send();
  147. print("jump to bootloader...\n");
  148. _delay_ms(100);
  149. jump_bootloader(); // not return
  150. }
  151. if (mouse_x || mouse_y || mouse_wheel || mouse_hwheel || mouse_btn != mouse_buttons) {
  152. mouse_buttons = mouse_btn;
  153. usb_mouse_move(mouse_x, mouse_y, mouse_wheel, mouse_hwheel);
  154. // acceleration
  155. _delay_ms(MOUSE_DELAY_MS >> (mouse_repeat < MOUSE_DELAY_ACC ? mouse_repeat : MOUSE_DELAY_ACC));
  156. mouse_repeat++;
  157. } else {
  158. mouse_repeat = 0;
  159. }
  160. // send keys to host
  161. if (modified) {
  162. if (key_index > 6) {
  163. //Rollover
  164. }
  165. usb_keyboard_send();
  166. // LED flash for debug
  167. LED_CONFIG;
  168. LED_OFF;
  169. }
  170. }
  171. _delay_ms(2);
  172. }
  173. }
  174. static void print_matrix(void) {
  175. print("\nr/c 01234567\n");
  176. for (int row = 0; row < MATRIX_ROWS; row++) {
  177. phex(row); print(": ");
  178. pbin_reverse(matrix[row]);
  179. if (matrix_has_ghost_in_row(row)) {
  180. print(" <ghost");
  181. }
  182. print("\n");
  183. }
  184. print("keys: ");
  185. for (int i = 0; i < 6; i++) { phex(keyboard_keys[i]); print(" "); }
  186. print("\n");
  187. print("mod: "); phex(keyboard_modifier_keys); print("\n");
  188. }
  189. // This interrupt routine is run approx 61 times per second.
  190. // A very simple inactivity timeout is implemented, where we
  191. // will send a space character and print a message to the
  192. // hid_listen debug message window.
  193. ISR(TIMER0_OVF_vect)
  194. {
  195. idle_count++;
  196. }