aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorSong Hongyan <hongyan.song@intel.com>2017-01-05 05:24:03 -0500
committerJonathan Cameron <jic23@kernel.org>2017-01-05 08:02:25 -0500
commit571299d099dcce0ff32c76e70e32e0ba01e55adc (patch)
treed87c5dd7ec05883775286ca288757701359b563d /tools
parentb257c1a45e9967ad84f9c5d40e657074d979ce70 (diff)
iio: Add channel for Gravity
Add new channel types support for gravity sensor. Gravity sensor provides an application-level or physical collection that identifies a device that measures exclusively the force of Earth's gravity along any number of axes. More information can be found in: http://www.usb.org/developers/hidpage/HUTRR59_-_Usages_for_Wearables.pdf Signed-off-by: Song Hongyan <hongyan.song@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/iio/iio_event_monitor.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/iio/iio_event_monitor.c b/tools/iio/iio_event_monitor.c
index d9b7e0f306c6..b61245e1181d 100644
--- a/tools/iio/iio_event_monitor.c
+++ b/tools/iio/iio_event_monitor.c
@@ -57,6 +57,7 @@ static const char * const iio_chan_type_name_spec[] = {
57 [IIO_RESISTANCE] = "resistance", 57 [IIO_RESISTANCE] = "resistance",
58 [IIO_PH] = "ph", 58 [IIO_PH] = "ph",
59 [IIO_UVINDEX] = "uvindex", 59 [IIO_UVINDEX] = "uvindex",
60 [IIO_GRAVITY] = "gravity",
60}; 61};
61 62
62static const char * const iio_ev_type_text[] = { 63static const char * const iio_ev_type_text[] = {
@@ -149,6 +150,7 @@ static bool event_is_known(struct iio_event_data *event)
149 case IIO_RESISTANCE: 150 case IIO_RESISTANCE:
150 case IIO_PH: 151 case IIO_PH:
151 case IIO_UVINDEX: 152 case IIO_UVINDEX:
153 case IIO_GRAVITY:
152 break; 154 break;
153 default: 155 default:
154 return false; 156 return false;