mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-17 05:10:54 +00:00
Uncrustified platform/cc2538dk/dev/button-sensor.c
This commit is contained in:
parent
5e25ca9bf5
commit
3f2869824c
@ -103,25 +103,17 @@ btn_callback(uint8_t port, uint8_t pin)
|
||||
}
|
||||
|
||||
timer_set(&debouncetimer, CLOCK_SECOND / 8);
|
||||
if(port == GPIO_A_NUM) {
|
||||
|
||||
if((port == BUTTON_SELECT_PORT) && (pin == BUTTON_SELECT_PIN)) {
|
||||
sensors_changed(&button_select_sensor);
|
||||
} else if(port == GPIO_C_NUM) {
|
||||
switch(pin) {
|
||||
case BUTTON_LEFT_PIN:
|
||||
sensors_changed(&button_left_sensor);
|
||||
break;
|
||||
case BUTTON_RIGHT_PIN:
|
||||
sensors_changed(&button_right_sensor);
|
||||
break;
|
||||
case BUTTON_UP_PIN:
|
||||
sensors_changed(&button_up_sensor);
|
||||
break;
|
||||
case BUTTON_DOWN_PIN:
|
||||
sensors_changed(&button_down_sensor);
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
} else if((port == BUTTON_LEFT_PORT) && (pin == BUTTON_LEFT_PIN)) {
|
||||
sensors_changed(&button_left_sensor);
|
||||
} else if((port == BUTTON_RIGHT_PORT) && (pin == BUTTON_RIGHT_PIN)) {
|
||||
sensors_changed(&button_right_sensor);
|
||||
} else if((port == BUTTON_UP_PORT) && (pin == BUTTON_UP_PIN)) {
|
||||
sensors_changed(&button_up_sensor);
|
||||
} else if((port == BUTTON_DOWN_PORT) && (pin == BUTTON_DOWN_PIN)) {
|
||||
sensors_changed(&button_down_sensor);
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
Loading…
Reference in New Issue
Block a user