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.

mykey.c 6.3KB

13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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_device.h"
  32. #include "print.h"
  33. #include "matrix.h"
  34. #include "keymap.h"
  35. #include "jump_bootloader.h"
  36. #define LED_CONFIG (DDRD |= (1<<6))
  37. #define LED_ON (PORTD &= ~(1<<6))
  38. #define LED_OFF (PORTD |= (1<<6))
  39. #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
  40. static void print_matrix(void);
  41. uint16_t idle_count=0;
  42. int main(void)
  43. {
  44. bool modified = false;
  45. bool has_ghost = false;
  46. uint8_t key_index = 0;
  47. // set for 16 MHz clock
  48. CPU_PRESCALE(0);
  49. matrix_init();
  50. // Initialize the USB, and then wait for the host to set configuration.
  51. // If the Teensy is powered without a PC connected to the USB port,
  52. // this will wait forever.
  53. usb_init();
  54. while (!usb_configured()) /* wait */ ;
  55. // Wait an extra second for the PC's operating system to load drivers
  56. // and do whatever it does to actually be ready for input
  57. _delay_ms(1000);
  58. // Configure timer 0 to generate a timer overflow interrupt every
  59. // 256*1024 clock cycles, or approx 61 Hz when using 16 MHz clock
  60. // This demonstrates how to use interrupts to implement a simple
  61. // inactivity timeout.
  62. TCCR0A = 0x00;
  63. TCCR0B = 0x05;
  64. TIMSK0 = (1<<TOIE0);
  65. print("firmware 0.2 for t.m.k.\n");
  66. int loop_count = 0;
  67. while (1) {
  68. int layer = 0;
  69. matrix_scan();
  70. layer = get_layer();
  71. modified = matrix_is_modified();
  72. has_ghost = matrix_has_ghost();
  73. // doesnt send keys during ghost occurs
  74. if (modified && !has_ghost) {
  75. key_index = 0;
  76. keyboard_modifier_keys = 0;
  77. for (int i = 0; i < 6; i++) keyboard_keys[i] = KB_NO;
  78. for (int row = 0; row < MATRIX_ROWS; row++) {
  79. for (int col = 0; col < MATRIX_COLS; col++) {
  80. if (matrix[row] & 1<<col) continue;
  81. uint8_t code = get_keycode(layer, row, col);
  82. if (code == KB_NO) {
  83. continue;
  84. } else if (KB_LCTRL <= code && code <= KB_RGUI) {
  85. // modifier keycode: 0xE0-0xE7
  86. keyboard_modifier_keys |= 1<<(code & 0x07);
  87. } else {
  88. if (key_index < 6)
  89. keyboard_keys[key_index] = code;
  90. key_index++;
  91. }
  92. }
  93. }
  94. // run bootloader when 4 left modifier keys down
  95. if (keyboard_modifier_keys == (MOD_LCTRL | MOD_LSHIFT | MOD_LALT | MOD_LGUI)) {
  96. // cancel all keys
  97. keyboard_modifier_keys = 0;
  98. for (int i = 0; i < 6; i++) keyboard_keys[i] = KB_NO;
  99. usb_keyboard_send();
  100. print("jump to bootloader...\n");
  101. _delay_ms(1000);
  102. jump_bootloader();
  103. }
  104. if (key_index > 6) {
  105. //Rollover
  106. }
  107. usb_keyboard_send();
  108. // variables shared with interrupt routines must be
  109. // accessed carefully so the interrupt routine doesn't
  110. // try to use the variable in the middle of our access
  111. cli();
  112. //idle_count = 0;
  113. sei();
  114. }
  115. // print matrix state for debug
  116. if (modified) {
  117. print_matrix();
  118. // LED flush
  119. DDRD |= 1<<PD6;
  120. PORTD |= 1<<PD6;
  121. }
  122. /*
  123. // print counts for debug
  124. if ((loop_count % 0x1000) == 0) {
  125. //print(".");
  126. print("idle_count: "); phex((idle_count & 0xFF00) >> 8); phex(idle_count & 0xFF); print("\n");
  127. print("loop_count: "); phex((loop_count & 0xFF00) >> 8); phex(loop_count & 0xFF); print("\n");
  128. print_matrix();
  129. }
  130. // teensy LED flush for debug
  131. if ((loop_count & 0x100) == 0) {
  132. DDRD |= 1<<PD6;
  133. PORTD |= 1<<PD6;
  134. }
  135. */
  136. // now the current pins will be the previous, and
  137. // wait a short delay so we're not highly sensitive
  138. // to mechanical "bounce".
  139. _delay_ms(2);
  140. loop_count++;
  141. }
  142. }
  143. static void print_matrix(void) {
  144. print("\nr/c 01234567\n");
  145. for (int row = 0; row < MATRIX_ROWS; row++) {
  146. phex(row); print(": ");
  147. pbin_reverse(matrix[row]);
  148. if (matrix_has_ghost_in_row(row)) {
  149. print(" <ghost");
  150. }
  151. print("\n");
  152. }
  153. print("keys: ");
  154. for (int i = 0; i < 6; i++) { phex(keyboard_keys[i]); print(" "); }
  155. print("\n");
  156. print("mod: "); phex(keyboard_modifier_keys); print("\n");
  157. }
  158. // This interrupt routine is run approx 61 times per second.
  159. // A very simple inactivity timeout is implemented, where we
  160. // will send a space character and print a message to the
  161. // hid_listen debug message window.
  162. ISR(TIMER0_OVF_vect)
  163. {
  164. idle_count++;
  165. }