mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
tools: iio: Update iio_event_monitor names
add recently added channel types and modifiers Signed-off-by: Peter Meerwald-Stadler <pmeerw@pmeerw.net> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
bce59b602d
commit
6ad515c6d6
@ -53,6 +53,9 @@ static const char * const iio_chan_type_name_spec[] = {
|
||||
[IIO_ENERGY] = "energy",
|
||||
[IIO_DISTANCE] = "distance",
|
||||
[IIO_VELOCITY] = "velocity",
|
||||
[IIO_CONCENTRATION] = "concentration",
|
||||
[IIO_RESISTANCE] = "resistance",
|
||||
[IIO_PH] = "ph",
|
||||
};
|
||||
|
||||
static const char * const iio_ev_type_text[] = {
|
||||
@ -102,6 +105,10 @@ static const char * const iio_modifier_names[] = {
|
||||
[IIO_MOD_WALKING] = "walking",
|
||||
[IIO_MOD_STILL] = "still",
|
||||
[IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
|
||||
[IIO_MOD_I] = "i",
|
||||
[IIO_MOD_Q] = "q",
|
||||
[IIO_MOD_CO2] = "co2",
|
||||
[IIO_MOD_VOC] = "voc",
|
||||
};
|
||||
|
||||
static bool event_is_known(struct iio_event_data *event)
|
||||
@ -136,6 +143,9 @@ static bool event_is_known(struct iio_event_data *event)
|
||||
case IIO_ENERGY:
|
||||
case IIO_DISTANCE:
|
||||
case IIO_VELOCITY:
|
||||
case IIO_CONCENTRATION:
|
||||
case IIO_RESISTANCE:
|
||||
case IIO_PH:
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
@ -174,6 +184,10 @@ static bool event_is_known(struct iio_event_data *event)
|
||||
case IIO_MOD_WALKING:
|
||||
case IIO_MOD_STILL:
|
||||
case IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z:
|
||||
case IIO_MOD_I:
|
||||
case IIO_MOD_Q:
|
||||
case IIO_MOD_CO2:
|
||||
case IIO_MOD_VOC:
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user