2
0

dactyl.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #ifndef DACTYL_H
  2. #define DACTYL_H
  3. #include "quantum.h"
  4. #include <stdint.h>
  5. #include <stdbool.h>
  6. #include "i2cmaster.h"
  7. #include <util/delay.h>
  8. #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
  9. #define CPU_16MHz 0x00
  10. // I2C aliases and register addresses (see "mcp23018.md")
  11. #define I2C_ADDR 0b0100000
  12. #define I2C_ADDR_WRITE ( (I2C_ADDR<<1) | I2C_WRITE )
  13. #define I2C_ADDR_READ ( (I2C_ADDR<<1) | I2C_READ )
  14. #define IODIRA 0x00 // i/o direction register
  15. #define IODIRB 0x01
  16. #define GPPUA 0x0C // GPIO pull-up resistor register
  17. #define GPPUB 0x0D
  18. #define GPIOA 0x12 // general purpose i/o port register (write modifies OLAT)
  19. #define GPIOB 0x13
  20. #define OLATA 0x14 // output latch register
  21. #define OLATB 0x15
  22. extern uint8_t mcp23018_status;
  23. void init_dactyl(void);
  24. uint8_t init_mcp23018(void);
  25. #define KEYMAP( \
  26. \
  27. /* left hand, spatial positions */ \
  28. k00,k01,k02,k03,k04,k05, \
  29. k10,k11,k12,k13,k14,k15, \
  30. k20,k21,k22,k23,k24,k25, \
  31. k30,k31,k32,k33,k34,k35, \
  32. k40,k41,k42,k43,k44, \
  33. k55,k50, \
  34. k54, \
  35. k53,k52,k51, \
  36. \
  37. /* right hand, spatial positions */ \
  38. k06,k07,k08,k09,k0A,k0B, \
  39. k16,k17,k18,k19,k1A,k1B, \
  40. k26,k27,k28,k29,k2A,k2B, \
  41. k36,k37,k38,k39,k3A,k3B, \
  42. k47,k48,k49,k4A,k4B, \
  43. k5B,k56, \
  44. k57, \
  45. k5A,k59,k58 ) \
  46. \
  47. /* matrix positions */ \
  48. { \
  49. { k00, k10, k20, k30, k40, k50 }, \
  50. { k01, k11, k21, k31, k41, k51 }, \
  51. { k02, k12, k22, k32, k42, k52 }, \
  52. { k03, k13, k23, k33, k43, k53 }, \
  53. { k04, k14, k24, k34, k44, k54 }, \
  54. { k05, k15, k25, k35, KC_NO, k55 }, \
  55. \
  56. { k06, k16, k26, k36, KC_NO, k56 }, \
  57. { k07, k17, k27, k37, k47, k57 }, \
  58. { k08, k18, k28, k38, k48, k58 }, \
  59. { k09, k19, k29, k39, k49, k59 }, \
  60. { k0A, k1A, k2A, k3A, k4A, k5A }, \
  61. { k0B, k1B, k2B, k3B, k4B, k5B } \
  62. }
  63. #define LAYOUT_dactyl KEYMAP
  64. #endif