change to port F6,F7
This commit is contained in:
parent
ac79f1b596
commit
598a0da30d
1 changed files with 9 additions and 9 deletions
|
@ -62,14 +62,14 @@ void
|
||||||
key_init(void)
|
key_init(void)
|
||||||
{
|
{
|
||||||
// Pairing Button
|
// Pairing Button
|
||||||
PORTB |= (1<<PORTB4); // Set port PORTE bint 4 with pullup resistor
|
// PORTB |= (1<<PORTE0); // Set port PORTE pint 0 with pullup resistor
|
||||||
DDRB |= (1<<DDB4); // Set pin as input
|
// DDRB |= (1<<DDE0); // Set pin as input
|
||||||
// ext1
|
// ext1
|
||||||
PORTB |= (1<<PORTB5); // Set port PORTE bint 5 with pullup resistor
|
PORTF |= (1<<PORTF6); // Set port PORTF pint 6 with pullup resistor
|
||||||
DDRB |= (1<<DDB5); // Set pin as input
|
DDRF |= (1<<DDF6); // Set pin as input
|
||||||
// ext2
|
// ext2
|
||||||
PORTB |= (1<<PORTB6); // Set port PORTE bint 6 with pullup resistor
|
PORTF |= (1<<PORTF7); // Set port PORTF pint 7 with pullup resistor
|
||||||
DDRB |= (1<<DDB6); // Set pin as input
|
DDRF |= (1<<DDF7); // Set pin as input
|
||||||
// Interrupt
|
// Interrupt
|
||||||
//PCICR |= _BV(PCIE0);
|
//PCICR |= _BV(PCIE0);
|
||||||
//PCMSK0 |= _BV(PCINT4) | _BV(PCINT5) | _BV(PCINT6);
|
//PCMSK0 |= _BV(PCINT4) | _BV(PCINT5) | _BV(PCINT6);
|
||||||
|
@ -87,7 +87,7 @@ uint8_t
|
||||||
is_button_ext4(void)
|
is_button_ext4(void)
|
||||||
{
|
{
|
||||||
/* Return true if button has been pressed. */
|
/* Return true if button has been pressed. */
|
||||||
if ( PINB & (1<<PINB4) ) {
|
if ( PINE & (1<<PINE0) ) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
@ -98,7 +98,7 @@ uint8_t
|
||||||
is_button_ext5(void)
|
is_button_ext5(void)
|
||||||
{
|
{
|
||||||
/* Return true if button has been pressed. */
|
/* Return true if button has been pressed. */
|
||||||
if ( PINB & (1<<PINB5) ) {
|
if ( PINF & (1<<PINF6) ) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
@ -109,7 +109,7 @@ uint8_t
|
||||||
is_button_ext6(void)
|
is_button_ext6(void)
|
||||||
{
|
{
|
||||||
/* Return true if button has been pressed. */
|
/* Return true if button has been pressed. */
|
||||||
if ( PINB & (1<<PINB6) ) {
|
if ( PINF & (1<<PINF7) ) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
|
Loading…
Reference in a new issue