logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

config.h (911B)


  1. // Copyright 2022 Kyle McCreery (@kylemccreery)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. /* Define custom font */
  5. #define OLED_FONT_H "keyboards/mechwild/puckbuddy/glcdfont.c"
  6. /* set the tapping term for glidepoint pad to register a tap click */
  7. //#define CIRQUE_PINNACLE_TAPPING_TERM 0 // This is set to 0 to disable it
  8. /* spi config */
  9. #define SPI_DRIVER SPID1
  10. #define SPI_SCK_PIN A5
  11. #define SPI_SCK_PAL_MODE 5
  12. #define SPI_MOSI_PIN A7
  13. #define SPI_MOSI_PAL_MODE 5
  14. #define SPI_MISO_PIN A6
  15. #define SPI_MISO_PAL_MODE 5
  16. #define CIRQUE_PINNACLE_SPI_DIVISOR 8
  17. #define CIRQUE_PINNACLE_SPI_CS_PIN A4
  18. /*
  19. * Feature disable options
  20. * These options are also useful to firmware size reduction.
  21. */
  22. /* disable debug print */
  23. //#define NO_DEBUG
  24. /* disable print */
  25. //#define NO_PRINT
  26. /* disable action features */
  27. //#define NO_ACTION_LAYER
  28. //#define NO_ACTION_TAPPING
  29. //#define NO_ACTION_ONESHOT