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.

AppConfig.h 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2014.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2014 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaims all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. /** \file
  27. * \brief Application Configuration Header File
  28. *
  29. * This is a header file which is be used to configure some of
  30. * the application's compile time options, as an alternative to
  31. * specifying the compile time constants supplied through a
  32. * makefile or build system.
  33. *
  34. * For information on what each token does, refer to the
  35. * \ref Sec_Options section of the application documentation.
  36. */
  37. #ifndef _APP_CONFIG_H_
  38. #define _APP_CONFIG_H_
  39. #define AUX_LINE_PORT PORTB
  40. #define AUX_LINE_PIN PINB
  41. #define AUX_LINE_DDR DDRB
  42. #if (BOARD == BOARD_U2S)
  43. #define AUX_LINE_MASK (1 << 0)
  44. #else
  45. #define AUX_LINE_MASK (1 << 4)
  46. #endif
  47. #define ENABLE_ISP_PROTOCOL
  48. #define ENABLE_XPROG_PROTOCOL
  49. #define VTARGET_ADC_CHANNEL 2
  50. #define VTARGET_REF_VOLTS 5
  51. #define VTARGET_SCALE_FACTOR 1
  52. // #define VTARGET_USE_INTERNAL_REF
  53. // #define NO_VTARGET_DETECT
  54. // #define XCK_RESCUE_CLOCK_ENABLE
  55. // #define INVERTED_ISP_MISO
  56. #define LIBUSB_DRIVER_COMPAT
  57. // #define RESET_TOGGLES_LIBUSB_COMPAT
  58. // #define FIRMWARE_VERSION_MINOR 0x11
  59. #endif