Define button_sensor in contiki-conf.h
This commit is contained in:
parent
c2740fedb2
commit
364fc9cacf
3 changed files with 7 additions and 2 deletions
|
@ -310,6 +310,13 @@
|
||||||
|
|
||||||
/* Notify various examples that we have Buttons */
|
/* Notify various examples that we have Buttons */
|
||||||
#define PLATFORM_HAS_BUTTON 1
|
#define PLATFORM_HAS_BUTTON 1
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Override button symbols from dev/button-sensor.h, for the examples that
|
||||||
|
* include it
|
||||||
|
*/
|
||||||
|
#define button_sensor button_left_sensor
|
||||||
|
#define button_sensor2 button_right_sensor
|
||||||
/** @} */
|
/** @} */
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* Platform-specific define to signify sensor reading failure */
|
/* Platform-specific define to signify sensor reading failure */
|
||||||
|
|
|
@ -54,7 +54,6 @@
|
||||||
#define BUTTON_SENSOR_VALUE_RELEASED 0
|
#define BUTTON_SENSOR_VALUE_RELEASED 0
|
||||||
#define BUTTON_SENSOR_VALUE_PRESSED 1
|
#define BUTTON_SENSOR_VALUE_PRESSED 1
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
#define button_sensor button_left_sensor
|
|
||||||
extern const struct sensors_sensor button_left_sensor;
|
extern const struct sensors_sensor button_left_sensor;
|
||||||
extern const struct sensors_sensor button_right_sensor;
|
extern const struct sensors_sensor button_right_sensor;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
|
|
@ -49,7 +49,6 @@
|
||||||
#define BUTTON_SENSOR_VALUE_RELEASED 0
|
#define BUTTON_SENSOR_VALUE_RELEASED 0
|
||||||
#define BUTTON_SENSOR_VALUE_PRESSED 1
|
#define BUTTON_SENSOR_VALUE_PRESSED 1
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
#define button_sensor button_select_sensor
|
|
||||||
extern const struct sensors_sensor button_select_sensor;
|
extern const struct sensors_sensor button_select_sensor;
|
||||||
extern const struct sensors_sensor button_left_sensor;
|
extern const struct sensors_sensor button_left_sensor;
|
||||||
extern const struct sensors_sensor button_right_sensor;
|
extern const struct sensors_sensor button_right_sensor;
|
||||||
|
|
Loading…
Reference in a new issue