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 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. // TODO: clean unused headers
  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. #include "usb.h"
  33. #include "usb_keyboard.h"
  34. #include "usb_mouse.h"
  35. #include "print.h"
  36. #include "matrix_skel.h"
  37. #include "keymap.h"
  38. #include "jump_bootloader.h"
  39. #include "key_process.h"
  40. #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
  41. // TODO: should go to hardware dependent file
  42. // for Teensy/Teensy++ 2.0
  43. #define LED_CONFIG (DDRD |= (1<<6))
  44. #define LED_ON (PORTD |= (1<<6))
  45. #define LED_OFF (PORTD &= ~(1<<6))
  46. uint16_t idle_count=0;
  47. int main(void)
  48. {
  49. // set for 16 MHz clock
  50. CPU_PRESCALE(0);
  51. // Initialize the USB, and then wait for the host to set configuration.
  52. // If the Teensy is powered without a PC connected to the USB port,
  53. // this will wait forever.
  54. usb_init();
  55. while (!usb_configured()) /* wait */ ;
  56. // Configure timer 0 to generate a timer overflow interrupt every
  57. // 256*1024 clock cycles, or approx 61 Hz when using 16 MHz clock
  58. // This demonstrates how to use interrupts to implement a simple
  59. // inactivity timeout.
  60. TCCR0A = 0x00;
  61. TCCR0B = 0x05;
  62. TIMSK0 = (1<<TOIE0);
  63. matrix_init();
  64. matrix_scan();
  65. // debug on when 4 keys are pressed
  66. if (matrix_key_count() == 4) print_enable = true;
  67. /* wait for debug pipe to print greetings. */
  68. if (print_enable) {
  69. for (int i =0; i < 6; i++) {
  70. LED_CONFIG;
  71. LED_ON;
  72. _delay_ms(500);
  73. LED_OFF;
  74. _delay_ms(500);
  75. }
  76. }
  77. print("\nt.m.k. keyboard 1.2\n");
  78. while (1) {
  79. proc_matrix();
  80. _delay_ms(2);
  81. }
  82. }
  83. // This interrupt routine is run approx 61 times per second.
  84. // A very simple inactivity timeout is implemented, where we
  85. // will send a space character and print a message to the
  86. // hid_listen debug message window.
  87. ISR(TIMER0_OVF_vect)
  88. {
  89. idle_count++;
  90. }