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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 "usb_keyboard_debug.h"
  27. // Local Includes
  28. #include "usb_com.h"
  29. // ----- Variables -----
  30. // which modifier keys are currently pressed
  31. // 1=left ctrl, 2=left shift, 4=left alt, 8=left gui
  32. // 16=right ctrl, 32=right shift, 64=right alt, 128=right gui
  33. uint8_t USBKeys_Modifiers = 0;
  34. // which keys are currently pressed, up to 6 keys may be down at once
  35. uint8_t USBKeys_Array[USB_MAX_KEY_SEND] = {0,0,0,0,0,0};
  36. // The number of keys sent to the usb in the array
  37. uint8_t USBKeys_Sent;
  38. // 1=num lock, 2=caps lock, 4=scroll lock, 8=compose, 16=kana
  39. volatile uint8_t USBKeys_LEDs = 0;
  40. // ----- Functions -----
  41. // USB Module Setup
  42. void usb_setup(void)
  43. {
  44. // Initialize the USB, and then wait for the host to set configuration.
  45. // If the Teensy is powered without a PC connected to the USB port,
  46. // this will wait forever.
  47. usb_init();
  48. while ( !usb_configured() ) /* wait */ ;
  49. // Wait an extra second for the PC's operating system to load drivers
  50. // and do whatever it does to actually be ready for input
  51. _delay_ms(1000);
  52. }
  53. // USB Data Send
  54. void usb_send(void)
  55. {
  56. // TODO undo potentially old keys
  57. for ( uint8_t c = USBKeys_Sent; c < USBKeys_MaxSize; c++ )
  58. USBKeys_Array[c] = 0;
  59. // Send keypresses
  60. usb_keyboard_send();
  61. // Clear modifiers
  62. USBKeys_Modifiers = 0;
  63. }