config.h 509 B

12345678910111213141516
  1. #pragma once
  2. /*
  3. * Quefrency lacks I2C resistors on the right PCB, so the right half doesn't
  4. * work independently. (Presumably the floating I2C lines cause a problem.)
  5. * Using serial seems sufficiently fast in practice and allows both halves to
  6. * be used independently.
  7. */
  8. #define USE_SERIAL
  9. /* Use an extra LED on the right side since it's wider on the 65% PCB. */
  10. #undef RGBLED_NUM
  11. #define RGBLED_NUM 17
  12. /* Set up RGB lighting so it works with either side as master. */
  13. #define RGBLED_SPLIT { 8, 9 }