Kiibohd Controller
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

usb_com.c 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* Copyright (C) 2011 by Jacob Alexander
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to deal
  5. * in the Software without restriction, including without limitation the rights
  6. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. * copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. * THE SOFTWARE.
  20. */
  21. // ----- Includes -----
  22. // Compiler Includes
  23. #include <util/delay.h>
  24. // AVR Includes
  25. // Project Includes
  26. #include <scan_loop.h>
  27. #include "usb_keyboard_debug.h"
  28. // Local Includes
  29. #include "usb_com.h"
  30. // ----- Variables -----
  31. // which modifier keys are currently pressed
  32. // 1=left ctrl, 2=left shift, 4=left alt, 8=left gui
  33. // 16=right ctrl, 32=right shift, 64=right alt, 128=right gui
  34. uint8_t USBKeys_Modifiers = 0;
  35. // which keys are currently pressed, up to 6 keys may be down at once
  36. uint8_t USBKeys_Array[USB_MAX_KEY_SEND] = {0,0,0,0,0,0};
  37. // The number of keys sent to the usb in the array
  38. uint8_t USBKeys_Sent;
  39. // 1=num lock, 2=caps lock, 4=scroll lock, 8=compose, 16=kana
  40. volatile uint8_t USBKeys_LEDs = 0;
  41. // ----- Functions -----
  42. // USB Module Setup
  43. inline void usb_setup(void)
  44. {
  45. // Initialize the USB, and then wait for the host to set configuration.
  46. // If the Teensy is powered without a PC connected to the USB port,
  47. // this will wait forever.
  48. usb_init();
  49. while ( !usb_configured() ) /* wait */ ;
  50. // Wait an extra second for the PC's operating system to load drivers
  51. // and do whatever it does to actually be ready for input
  52. _delay_ms(1000);
  53. }
  54. // USB Data Send
  55. inline void usb_send(void)
  56. {
  57. // TODO undo potentially old keys
  58. for ( uint8_t c = USBKeys_Sent; c < USBKeys_MaxSize; c++ )
  59. USBKeys_Array[c] = 0;
  60. // Send keypresses
  61. usb_keyboard_send();
  62. // Clear modifiers and keys
  63. USBKeys_Modifiers = 0;
  64. USBKeys_Sent = 0;
  65. // Signal Scan Module we are finishedA
  66. scan_finishedWithUSBBuffer();
  67. }