diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-11-26 10:46:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-26 10:46:29 -0500 |
commit | fbd4c34c0fdf9aa43130a90500b566e029dbb5b8 (patch) | |
tree | 63221d022fd0488f937576a809043e7e58fbcd1f /quantum/config_common.h | |
parent | 7a1eca784fee10ed77fdc719f7715cc76facbcf0 (diff) | |
parent | f2214ce1cb6cfe7a0efabe870a2c00fb8451ee80 (diff) |
Merge pull request #904 from priyadi/ps2_remove_hardcoded_pins
PS2 pins configuration belongs to each keyboards config.h
Diffstat (limited to 'quantum/config_common.h')
-rw-r--r-- | quantum/config_common.h | 46 |
1 files changed, 1 insertions, 45 deletions
diff --git a/quantum/config_common.h b/quantum/config_common.h index 6b525fe1c6..4d3939dae1 100644 --- a/quantum/config_common.h +++ b/quantum/config_common.h @@ -79,48 +79,4 @@ # endif #endif -/* - * 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
\ No newline at end of file |