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.

преди 13 години
преди 13 години
преди 13 години
преди 13 години
преди 13 години
преди 13 години
преди 13 години
преди 13 години
преди 13 години
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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 <avr/io.h>
  27. #include <avr/pgmspace.h>
  28. #include <avr/interrupt.h>
  29. #include <util/delay.h>
  30. #include "usb_keyboard_debug.h"
  31. #include "print.h"
  32. #include "matrix.h"
  33. #include "keymap.h"
  34. #define LED_CONFIG (DDRD |= (1<<6))
  35. #define LED_ON (PORTD &= ~(1<<6))
  36. #define LED_OFF (PORTD |= (1<<6))
  37. #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
  38. uint16_t idle_count=0;
  39. int main(void)
  40. {
  41. uint8_t modified = 0;
  42. uint8_t key_index = 0;
  43. // set for 16 MHz clock
  44. CPU_PRESCALE(0);
  45. matrix_init();
  46. // Initialize the USB, and then wait for the host to set configuration.
  47. // If the Teensy is powered without a PC connected to the USB port,
  48. // this will wait forever.
  49. usb_init();
  50. while (!usb_configured()) /* wait */ ;
  51. // Wait an extra second for the PC's operating system to load drivers
  52. // and do whatever it does to actually be ready for input
  53. _delay_ms(1000);
  54. // Configure timer 0 to generate a timer overflow interrupt every
  55. // 256*1024 clock cycles, or approx 61 Hz when using 16 MHz clock
  56. // This demonstrates how to use interrupts to implement a simple
  57. // inactivity timeout.
  58. TCCR0A = 0x00;
  59. TCCR0B = 0x05;
  60. TIMSK0 = (1<<TOIE0);
  61. print("keyboard firmware 0.1 for t.m.k.\n");
  62. while (1) {
  63. uint8_t row, col, code;
  64. modified = 0;
  65. matrix_scan();
  66. keyboard_modifier_keys = 0;
  67. for (int i = 0; i < 6; i++)
  68. keyboard_keys[i] = KB_NO;
  69. key_index = 0;
  70. for (row = 0; row < MATRIX_ROWS; row++) {
  71. if (matrix[row] != prev_matrix[row]) {
  72. modified = 1;
  73. }
  74. for (col = 0; col < MATRIX_COLS; col++) {
  75. if (matrix[row] & 1<<col) continue;
  76. code = get_keycode(row, col);
  77. // Modifier keycode: 0xE0-0xE7
  78. if (KB_LCTRL <= code && code <= KB_RGUI) {
  79. keyboard_modifier_keys |= 1<<(code&0x07);
  80. } else {
  81. if (key_index < 6) {
  82. keyboard_keys[key_index] = code;
  83. }
  84. key_index++;
  85. }
  86. }
  87. }
  88. if (key_index > 6) {
  89. //Rollover
  90. }
  91. // if any keypresses were detected, reset the idle counter
  92. if (modified) {
  93. print(" 01234567\n");
  94. for (row = 0; row < MATRIX_ROWS; row++) {
  95. phex(row); print(": "); pbin_reverse(matrix[row]); print("\n");
  96. }
  97. print("keys: ");
  98. for (int i = 0; i < 6; i++) { phex(keyboard_keys[i]); print(" "); }
  99. print("\n");
  100. print("mod: "); phex(keyboard_modifier_keys); print("\n");
  101. usb_keyboard_send();
  102. // variables shared with interrupt routines must be
  103. // accessed carefully so the interrupt routine doesn't
  104. // try to use the variable in the middle of our access
  105. cli();
  106. idle_count = 0;
  107. sei();
  108. }
  109. // now the current pins will be the previous, and
  110. // wait a short delay so we're not highly sensitive
  111. // to mechanical "bounce".
  112. _delay_ms(2);
  113. }
  114. }
  115. // This interrupt routine is run approx 61 times per second.
  116. // A very simple inactivity timeout is implemented, where we
  117. // will send a space character and print a message to the
  118. // hid_listen debug message window.
  119. ISR(TIMER0_OVF_vect)
  120. {
  121. idle_count++;
  122. if (idle_count > 61 * 8) {
  123. idle_count = 0;
  124. //print("Timer Event :)\n");
  125. //usb_keyboard_press(KEY_SPACE, 0);
  126. }
  127. }