]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7
authorJack Humbert <jack.humb@gmail.com>
Tue, 29 Nov 2016 04:51:07 +0000 (23:51 -0500)
committerJack Humbert <jack.humb@gmail.com>
Tue, 29 Nov 2016 04:51:07 +0000 (23:51 -0500)
1  2 
build_keyboard.mk
quantum/config_common.h
readme.md

Simple merge
index f3897dc2ce76f0eee920feddaa65337c47da8380,4d3939dae17ee718245a6a28988494cc8f6334ef..17c11faeb617e1fbaeae12af7622f6c4c429c10e
          } while(0)
  #   else
  #       error "USART configuration is needed."
- #endif
- // I'm fairly sure these aren't needed, but oh well - Jack
- /*
-  * PS/2 Interrupt configuration
-  */
- #ifdef PS2_USE_INT
- /* uses INT1 for clock line(ATMega32U4) */
- #define PS2_CLOCK_PORT  PORTD
- #define PS2_CLOCK_PIN   PIND
- #define PS2_CLOCK_DDR   DDRD
- #define PS2_CLOCK_BIT   1
- #define PS2_DATA_PORT   PORTD
- #define PS2_DATA_PIN    PIND
- #define PS2_DATA_DDR    DDRD
- #define PS2_DATA_BIT    0
- #define PS2_INT_INIT()  do {    \
-     EICRA |= ((1<<ISC11) |      \
-               (0<<ISC10));      \
- } while (0)
- #define PS2_INT_ON()  do {      \
-     EIMSK |= (1<<INT1);         \
- } while (0)
- #define PS2_INT_OFF() do {      \
-     EIMSK &= ~(1<<INT1);        \
- } while (0)
- #define PS2_INT_VECT    INT1_vect
- #endif
- /*
-  * PS/2 Busywait configuration
-  */
- #ifdef PS2_USE_BUSYWAIT
- #define PS2_CLOCK_PORT  PORTD
- #define PS2_CLOCK_PIN   PIND
- #define PS2_CLOCK_DDR   DDRD
- #define PS2_CLOCK_BIT   1
- #define PS2_DATA_PORT   PORTD
- #define PS2_DATA_PIN    PIND
- #define PS2_DATA_DDR    DDRD
- #define PS2_DATA_BIT    0
- #endif
+ #   endif
  #endif
  
 -#endif
 +#endif
diff --cc readme.md
Simple merge