Home | History | Annotate | Download | only in sensors
      1 <html devsite>
      2   <head>
      3     <title>HAL interface</title>
      4     <meta name="project_path" value="/_project.yaml" />
      5     <meta name="book_path" value="/_book.yaml" />
      6   </head>
      7   <body>
      8   <!--
      9       Copyright 2017 The Android Open Source Project
     10 
     11       Licensed under the Apache License, Version 2.0 (the "License");
     12       you may not use this file except in compliance with the License.
     13       You may obtain a copy of the License at
     14 
     15           http://www.apache.org/licenses/LICENSE-2.0
     16 
     17       Unless required by applicable law or agreed to in writing, software
     18       distributed under the License is distributed on an "AS IS" BASIS,
     19       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     20       See the License for the specific language governing permissions and
     21       limitations under the License.
     22   -->
     23 
     24 
     25 
     26 <p>The HAL interface, declared in <a href="https://android.googlesource.com/platform/hardware/libhardware/+/master/include/hardware/sensors.h">sensors.h</a>, represents the interface between the Android <a href="sensor-stack.html#framework">framework</a> and the hardware-specific software. A HAL implementation must define each
     27   function declared in sensors.h. The main functions are:</p>
     28 <ul>
     29   <li><code>get_sensors_list</code> - Returns the list of all sensors. </li>
     30   <li><code>activate</code> - Starts or stops a sensor. </li>
     31   <li><code>batch</code> - Sets a sensors parameters such as sampling frequency and maximum
     32     reporting latency. </li>
     33   <li><code>setDelay</code> - Used only in HAL version 1.0. Sets the sampling frequency for a
     34     given sensor. </li>
     35   <li><code>flush</code> - Flushes the FIFO of the specified sensor and reports a flush complete
     36     event when this is done. </li>
     37   <li><code>poll</code> - Returns available sensor events. </li>
     38 </ul>
     39 <p>The implementation must be thread safe and allow these functions to be called
     40   from different threads.</p>
     41 <p>The interface also defines several types used by those functions. The main
     42   types are:</p>
     43 <ul>
     44   <li><code>sensors_module_t</code></li>
     45   <li><code>sensors_poll_device_t</code></li>
     46   <li><code>sensor_t</code></li>
     47   <li><code>sensors_event_t</code></li>
     48 </ul>
     49 <p>In addition to the sections below, see <a href="https://android.googlesource.com/platform/hardware/libhardware/+/master/include/hardware/sensors.h">sensors.h</a> for more information on those types.</p>
     50 <h2 id="get_sensors_list_list">get_sensors_list(list)</h2>
     51 <pre class="prettyprint">int (*get_sensors_list)(struct sensors_module_t* module, struct sensor_t
     52   const** list);</pre>
     53 <p>Provides the list of sensors implemented by the HAL. See <a href="#sensor_t">sensor_t</a> for details on how the sensors are defined.</p>
     54 <p>The order in which the sensors appear in the list is the order in which the
     55   sensors will be reported to the applications. Usually, the base sensors appear
     56   first, followed by the composite sensors.</p>
     57 <p>If several sensors share the same sensor type and wake-up property, the first
     58   one in the list is called the default sensor. It is the one returned by
     59   <code>getDefaultSensor(int sensorType, bool wakeUp)</code>.</p>
     60 <p>This function returns the number of sensors in the list.</p>
     61 <h2 id="activate_sensor_true_false">activate(sensor, true/false)</h2>
     62 <pre class="prettyprint">int (*activate)(struct sensors_poll_device_t *dev, int sensor_handle, int
     63   enabled);</pre>
     64 <p>Activates or deactivates a sensor.</p>
     65 <p><code>sensor_handle</code> is the handle of the sensor to activate/deactivate. A sensors
     66   handle is defined by the <code>handle</code> field of its <a href="#sensor_t">sensor_t</a> structure.</p>
     67 <p><code>enabled</code> is set to 1 to enable or 0 to disable the sensor.</p>
     68 <p>One-shot sensors deactivate themselves automatically upon receiving an event,
     69   and they must still accept to be deactivated through a call to <code>activate(...,
     70   enabled=0)</code>.</p>
     71 <p>Non-wake-up sensors never prevent the SoC from going into suspend mode; that
     72   is, the HAL shall not hold a partial wake-lock on behalf of applications.</p>
     73 <p>Wake-up sensors, when delivering events continuously, can prevent the SoC from
     74   going into suspend mode, but if no event needs to be delivered, the partial
     75   wake-lock must be released.</p>
     76 <p>If <code>enabled</code> is 1 and the sensor is already activated, this function is a no-op
     77   and succeeds.</p>
     78 <p>If <code>enabled</code> is 0 and the sensor is already deactivated, this function is a no-op
     79   and succeeds.</p>
     80 <p>This function returns 0 on success and a negative error number otherwise.</p>
     81 <h2 id="batch_sensor_flags_sampling_period_maximum_report_latency">batch(sensor, flags, sampling period, maximum report latency)</h2>
     82 <pre class="prettyprint">
     83 int (*batch)(
     84      struct sensors_poll_device_1* dev,
     85      int sensor_handle,
     86      int flags,
     87      int64_t sampling_period_ns,
     88      int64_t max_report_latency_ns);
     89 </pre>
     90 <p>Sets a sensors parameters, including <a href="#sampling_period_ns">sampling frequency</a> and <a href="#max_report_latency_ns">maximum report latency</a>. This function can be called while the sensor is activated, in which case it
     91   must not cause any sensor measurements to be lost: Transitioning from one
     92   sampling rate to the other cannot cause lost events, nor can transitioning from
     93   a high maximum report latency to a low maximum report latency.</p>
     94 <p><code>sensor_handle</code> is the handle of the sensor to configure.</p>
     95 <p><code>flags</code> is currently unused.</p>
     96 <p><code>sampling_period_ns</code> is the sampling period at which the sensor should run, in
     97   nanoseconds. See <a href="#sampling_period_ns">sampling_period_ns</a> for more details.</p>
     98 <p><code>max_report_latency_ns</code> is the maximum time by which events can be delayed before
     99   being reported through the HAL, in nanoseconds. See the <a href="#max_report_latency_ns">max_report_latency_ns</a> paragraph for more details.</p>
    100 <p>This function returns 0 on success and a negative error number otherwise.</p>
    101 <h3 id="sampling_period_ns">sampling_period_ns</h3>
    102 <p>What the <code>sampling_period_ns</code> parameter means depends on the specified sensor's
    103   reporting mode:</p>
    104 <ul>
    105   <li> Continuous: <code>sampling_period_ns</code> is the sampling rate, meaning the rate at which
    106     events are generated. </li>
    107   <li> On-change: <code>sampling_period_ns</code> limits the sampling rate of events, meaning
    108     events are generated no faster than every <code>sampling_period_ns</code> nanoseconds. There
    109     might be periods longer than <code>sampling_period_ns</code> where no event is generated if
    110     the measured values do not change for long periods. See <a
    111     href="report-modes.html#on-change">on-change</a> reporting mode for more
    112     details. </li>
    113   <li> One-shot: <code>sampling_period_ns</code> is ignored. It has no effect. </li>
    114   <li> Special: See the specific <a href="sensor-types.html">sensor type
    115   descriptions</a> for details on how <code>sampling_period_ns</code> is used
    116   for special sensors. </li>
    117 </ul>
    118 <p>See <a href="report-modes.html">Reporting modes</a> for more information
    119   about the impact of <code>sampling_period_ns</code> in the different modes.</p>
    120 <p>For continuous and on-change sensors,</p>
    121 <ul>
    122   <li> if <code>sampling_period_ns</code> is less than
    123     <code>sensor_t.minDelay</code>, then the HAL implementation must silently
    124     clamp it to <code>max(sensor_t.minDelay, 1ms)</code>. Android
    125     does not support the generation of events at more than 1000Hz. </li>
    126   <li> if <code>sampling_period_ns</code> is greater than
    127     <code>sensor_t.maxDelay</code>, then the HAL
    128     implementation must silently truncate it to <code>sensor_t.maxDelay</code>. </li>
    129 </ul>
    130 <p>Physical sensors sometimes have limitations on the rates at which they can run
    131   and the accuracy of their clocks. To account for this, we allow the actual
    132   sampling frequency to differ from the requested frequency, as long as it
    133   satisfies the requirements in the table below.</p>
    134 <table>
    135   <tr>
    136     <th><p>If the requested frequency is</p></th>
    137     <th><p>Then the actual frequency must be</p></th>
    138   </tr>
    139   <tr>
    140     <td><p>below min frequency (&lt;1/maxDelay)</p></td>
    141     <td><p>between 90% and 110% of the min frequency</p></td>
    142   </tr>
    143   <tr>
    144     <td><p>between min and max frequency</p></td>
    145     <td><p>between 90% and 220% of the requested frequency</p></td>
    146   </tr>
    147   <tr>
    148     <td><p>above max frequency (&gt;1/minDelay)</p></td>
    149     <td><p>between 90% and 110% of the max frequency</p>
    150       <p>and below 1100Hz</p></td>
    151   </tr>
    152 </table>
    153 <p>Note that this contract is valid only at the HAL level, where there is always a
    154   single client. At the SDK level, applications might get different rates, due to
    155   the multiplexing happening in the Framework. See <a
    156   href="sensor-stack.html#framework">Framework</a> for more details.</p>
    157 <h3 id="max_report_latency_ns">max_report_latency_ns</h3>
    158 <p><code>max_report_latency_ns</code> sets the maximum time in nanoseconds, by which events can
    159   be delayed and stored in the hardware FIFO before being reported through the
    160   HAL while the SoC is awake.</p>
    161 <p>A value of zero signifies that the events must be reported as soon as they are
    162   measured, either skipping the FIFO altogether, or emptying the FIFO as soon as
    163   one event from this sensor is present in it.</p>
    164 <p>For example, an accelerometer activated at 50Hz with <code>max_report_latency_ns=0</code>
    165   will trigger interrupts 50 times per second when the SoC is awake.</p>
    166 <p>When <code>max_report_latency_ns&gt;0</code>, sensor events do not need to be reported as soon
    167   as they are detected. They can be temporarily stored in the hardware FIFO and
    168   reported in batches, as long as no event is delayed by more than
    169   max_report_latency_ns nanoseconds. That is, all events since the previous batch
    170   are recorded and returned at once. This reduces the amount of interrupts sent
    171   to the SoC and allows the SoC to switch to a lower power mode (idle) while the
    172   sensor is capturing and batching data.</p>
    173 <p>Each event has a timestamp associated with it. Delaying the time at which an
    174   event is reported does not impact the event timestamp. The timestamp must be
    175   accurate and correspond to the time at which the event physically happened, not
    176   the time it is being reported. </p>
    177 <p>Allowing sensor events to be stored temporarily in the hardware FIFO does not
    178   modify the behavior of <code>poll</code>: events from different sensors can be interleaved,
    179   and as usual, all events from the same sensor are time-ordered.</p>
    180 <p>See <a href="batching.html">Batching</a> for more details on sensor
    181 batching, including behaviors in suspend mode and out of suspend mode.</p>
    182 <h2 id="setdelay_sensor_sampling_period">setDelay(sensor, sampling period)</h2>
    183 <pre class="prettyprint">
    184 int (*setDelay)(
    185      struct sensors_poll_device_t *dev,
    186      int sensor_handle,
    187      int64_t sampling_period_ns);
    188 </pre>
    189 <p>After HAL version 1.0, this function is deprecated and is never called.
    190   Instead, the <code>batch</code> function is called to set the
    191   <code>sampling_period_ns</code> parameter.</p>
    192 <p>In HAL version 1.0, setDelay was used instead of batch to set <a href="#sampling_period_ns">sampling_period_ns</a>.</p>
    193 <h2 id="flush_sensor">flush(sensor)</h2>
    194 <pre class="prettyprint">int (*flush)(struct sensors_poll_device_1* dev, int sensor_handle);</pre>
    195 <p>Add a <a href="#metadata_flush_complete_events">flush complete event</a> to the end of the hardware FIFO for the specified sensor and flushes the FIFO;
    196   those events are delivered as usual (i.e.: as if the maximum reporting latency
    197   had expired) and removed from the FIFO.</p>
    198 <p>The flush happens asynchronously (i.e.: this function must return immediately).
    199   If the implementation uses a single FIFO for several sensors, that FIFO is
    200   flushed and the flush complete event is added only for the specified sensor.</p>
    201 <p>If the specified sensor has no FIFO (no buffering possible), or if the FIFO,
    202   was empty at the time of the call, <code>flush</code> must still succeed and send a flush
    203   complete event for that sensor. This applies to all sensors other than one-shot
    204   sensors.</p>
    205 <p>When <code>flush</code> is called, even if a flush event is already in the FIFO for that
    206   sensor, an additional one must be created and added to the end of the FIFO, and
    207   the FIFO must be flushed. The number of <code>flush</code> calls must be
    208   equal to the number of flush complete events created.</p>
    209 <p><code>flush</code> does not apply to <a href="report-modes.html#one-shot">one-shot</a>
    210   sensors; if <code>sensor_handle</code> refers to a one-shot sensor,
    211   <code>flush</code> must return <code>-EINVAL</code> and not generate any
    212   flush complete metadata event.</p>
    213 <p>This function returns 0 on success, <code>-EINVAL</code> if the specified sensor is a
    214   one-shot sensor or wasnt enabled, and a negative error number otherwise.</p>
    215 <h2 id="poll">poll()</h2>
    216 <pre class="prettyprint">int (*poll)(struct sensors_poll_device_t *dev, sensors_event_t* data, int
    217   count);</pre>
    218 <p>Returns an array of sensor data by filling the <code>data</code> argument. This function
    219   must block until events are available. It will return the number of events read
    220   on success, or a negative error number in case of an error.</p>
    221 <p>The number of events returned in <code>data</code> must be less or equal to
    222   the <code>count</code> argument. This function shall never return 0 (no event).</p>
    223 <h2 id="sequence_of_calls">Sequence of calls</h2>
    224 <p>When the device boots, <code>get_sensors_list</code> is called.</p>
    225 <p>When a sensor gets activated, the <code>batch</code> function will be called with the
    226   requested parameters, followed by <code>activate(..., enable=1)</code>.</p>
    227 <p>Note that in HAL version 1_0, the order was the opposite: <code>activate</code> was called
    228   first, followed by <code>set_delay</code>.</p>
    229 <p>When the requested characteristics of a sensor are changing while it is
    230   activated, the <code>batch</code> function is called.</p>
    231 <p><code>flush</code> can be called at any time, even on non-activated sensors (in which case
    232   it must return <code>-EINVAL</code>)</p>
    233 <p>When a sensor gets deactivated, <code>activate(..., enable=0)</code> will be called.</p>
    234 <p>In parallel to those calls, the <code>poll</code> function will be called repeatedly to
    235   request data. <code>poll</code> can be called even when no sensors are activated.</p>
    236 <h2 id="sensors_module_t">sensors_module_t</h2>
    237 <p><code>sensors_module_t</code> is the type used to create the Android hardware module for the
    238   sensors. The implementation of the HAL must define an object
    239   <code>HAL_MODULE_INFO_SYM</code> of this type to expose the <a
    240   href="#get_sensors_list_list">get_sensors_list</a> function. See the definition
    241   of <code>sensors_module_t</code> in <a
    242   href="https://android.googlesource.com/platform/hardware/libhardware/+/master/include/hardware/sensors.h">sensors.h</a> and the
    243   definition of <code>hw_module_t</code> for more information.</p>
    244 <h2 id="sensors_poll_device_t_sensors_poll_device_1_t">sensors_poll_device_t / sensors_poll_device_1_t</h2>
    245 <p><code>sensors_poll_device_1_t</code> contains the rest of the methods defined above:
    246   <code>activate</code>, <code>batch</code>, <code>flush</code> and
    247   <code>poll</code>. Its <code>common</code> field (of type <a
    248   href="/devices/halref/structhw__device__t.html">hw_device_t</a>)
    249   defines the version number of the HAL.</p>
    250 <h2 id="sensor_t">sensor_t</h2>
    251 <p><code>sensor_t</code> represents an <a href="index.html">Android sensor</a>. Here are some of its important fields:</p>
    252 <p><strong>name:</strong> A user-visible string that represents the sensor. This string often
    253   contains the part name of the underlying sensor, the type of the sensor, and
    254   whether it is a wake-up sensor. For example, LIS2HH12 Accelerometer,
    255   MAX21000 Uncalibrated Gyroscope, BMP280 Wake-up Barometer, MPU6515 Game
    256   Rotation Vector</p>
    257 <p><strong>handle:</strong> The integer used to refer to the sensor when registering to it or
    258   generating events from it.</p>
    259 <p><strong>type:</strong> The type of the sensor. See the explanation of sensor
    260 type in <a href="index.html">What are Android sensors?</a> for more details, and see <a
    261 href="sensor-types.html">Sensor types</a> for official sensor types. For
    262 non-official sensor types, <code>type</code> must start with <code>SENSOR_TYPE_DEVICE_PRIVATE_BASE</code></p>
    263 <p><strong>stringType:</strong> The type of the sensor as a string. When the sensor has an official
    264   type, set to <code>SENSOR_STRING_TYPE_*</code>. When the sensor has a manufacturer specific
    265   type, <code>stringType</code> must start with the manufacturer reverse domain name. For
    266   example, a sensor (say a unicorn detector) defined by the
    267   <em>Cool-product</em> team at Fictional-Company could use
    268   <code>stringType=com.fictional_company.cool_product.unicorn_detector</code>.
    269   The <code>stringType</code> is used to uniquely identify non-official sensors types. See <a
    270   href="https://android.googlesource.com/platform/hardware/libhardware/+/master/include/hardware/sensors.h">sensors.h</a> for more
    271   information on types and string types.</p>
    272 <p><strong>requiredPermission:</strong> A string representing the permission that applications must
    273   possess to see the sensor, register to it and receive its data. An empty string
    274   means applications do not require any permission to access this sensor. Some
    275   sensor types like the <a href="sensor-types.html#heart_rate">heart rate
    276   monitor</a> have a mandatory <code>requiredPermission</code>. All sensors
    277   providing sensitive user information (such as the heart rate) must be protected by a permission.</p>
    278 <p><strong>flags:</strong> Flags for this sensor, defining the sensors reporting mode and whether
    279   the sensor is a wake-up sensor or not. For example, a one-shot wake-up sensor
    280   will have <code>flags = SENSOR_FLAG_ONE_SHOT_MODE | SENSOR_FLAG_WAKE_UP</code>. The bits of
    281   the flag that are not used in the current HAL version must be left equal to 0.</p>
    282 <p><strong>maxRange:</strong> The maximum value the sensor can report, in the same unit as the
    283   reported values. The sensor must be able to report values without saturating
    284   within <code>[-maxRange; maxRange]</code>. Note that this means the total range of the
    285   sensor in the generic sense is <code>2*maxRange</code>. When the sensor reports values over
    286   several axes, the range applies to each axis. For example, a +/- 2g
    287   accelerometer will report <code>maxRange = 2*9.81 = 2g</code>.</p>
    288 <p><strong>resolution:</strong> The smallest difference in value that the sensor can measure.
    289   Usually computed based on <code>maxRange</code> and the number of bits in the measurement.</p>
    290 <p><strong>power:</strong> The power cost of enabling the sensor, in milliAmps. This is nearly
    291   always more that the power consumption reported in the datasheet of the
    292   underlying sensor. See <a
    293 href="sensor-types.html#base_sensors_=_not_equal_to_physical_sensors">Base
    294 sensors != physical sensors</a> for more details and see <a
    295 href="power-use.html#power_measurement_process">Power measurement process</a> for details on
    296 how to measure the power consumption of a sensor. If the
    297   sensors power consumption depends on whether the device is moving, the power
    298   consumption while moving is the one reported in the <code>power</code> field.</p>
    299 <p><strong>minDelay:</strong> For continuous sensors, the sampling period, in microseconds,
    300   corresponding to the fastest rate the sensor supports. See <a href="#sampling_period_ns">sampling_period_ns</a> for details on how this value is used. Beware that <code>minDelay</code> is expressed in
    301   microseconds while <code>sampling_period_ns</code> is in nanoseconds. For on-change and
    302   special reporting mode sensors, unless otherwise specified, <code>minDelay</code> must be 0.
    303   For one-shot sensors, it must be -1.</p>
    304 <p><strong>maxDelay:</strong> For continuous and on-change sensors, the sampling period, in
    305   microseconds, corresponding to the slowest rate the sensor supports. See <a href="#sampling_period_ns">sampling_period_ns</a> for details on how this value is used. Beware that <code>maxDelay</code> is expressed in
    306   microseconds while <code>sampling_period_ns</code> is in nanoseconds. For special and
    307   one-shot sensors, <code>maxDelay</code> must be 0.</p>
    308 <p><strong>fifoReservedEventCount:</strong> The number of events reserved for this sensor in the
    309   hardware FIFO. If there is a dedicated FIFO for this sensor, then
    310   <code>fifoReservedEventCount</code> is the size of this dedicated FIFO. If the FIFO is
    311   shared with other sensors, <code>fifoReservedEventCount</code> is the size of the part of
    312   the FIFO that is reserved for that sensor. On most shared-FIFO systems, and on
    313   systems that do not have a hardware FIFO this value is 0.</p>
    314 <p><strong>fifoMaxEventCount:</strong> The maximum number of events that could be stored in the
    315   FIFOs for this sensor. This is always greater or equal to
    316   <code>fifoReservedEventCount</code>. This value is used to estimate how quickly the FIFO
    317   will get full when registering to the sensor at a specific rate, supposing no
    318   other sensors are activated. On systems that do not have a hardware FIFO,
    319   <code>fifoMaxEventCount</code> is 0. See <a href="batching.html">Batching</a> for more details.</p>
    320 <p>For sensors with an official sensor type, some of the fields are overwritten by
    321   the framework. For example, <a
    322   href="sensor-types.html#accelerometer">accelerometer</a> sensors are forced to
    323   have a continuous reporting mode, and <a
    324   href="sensor-types.html#heart_rate">heart rate</a> monitors are forced to be
    325   protected by the <code>SENSOR_PERMISSION_BODY_SENSORS</code> permission.</p>
    326 <h2 id="sensors_event_t">sensors_event_t</h2>
    327 <p>Sensor events generated by Android sensors and reported through the <a
    328 href="#poll">poll</a> function are of <code>type sensors_event_t</code>. Here are some
    329 important fields of <code>sensors_event_t</code>:</p>
    330 <p><strong>version:</strong> Must be <code>sizeof(struct sensors_event_t)</code></p>
    331 <p><strong>sensor:</strong> The handle of the sensor that generated the event, as defined by
    332   <code>sensor_t.handle</code>.</p>
    333 <p><strong>type:</strong> The sensor type of the sensor that generated the event, as defined by
    334   <code>sensor_t.type</code>.</p>
    335 <p><strong>timestamp:</strong> The timestamp of the event in nanoseconds. This is the time the
    336   event happened (a step was taken, or an accelerometer measurement was made),
    337   not the time the event was reported. <code>timestamp</code> must be synchronized with the
    338   <code>elapsedRealtimeNano</code> clock, and in the case of continuous sensors, the jitter
    339   must be small. Timestamp filtering is sometimes necessary to satisfy the CDD
    340   requirements, as using only the SoC interrupt time to set the timestamps
    341   causes too high jitter, and using only the sensor chip time to set the
    342   timestamps can cause de-synchronization from the
    343   <code>elapsedRealtimeNano</code> clock, as the sensor clock drifts.</p>
    344 <p><strong>data and overlapping fields:</strong> The values measured by the sensor. The meaning and
    345   units of those fields are specific to each sensor type. See <a
    346   href="https://android.googlesource.com/platform/hardware/libhardware/+/master/include/hardware/sensors.h">sensors.h</a> and the
    347   definition of the different <a href="sensor-types.html">Sensor types</a> for a
    348   description of the data fields. For some sensors, the accuracy of the
    349   readings is also reported as part of the data, through a <code>status</code> field. This
    350   field is only piped through for those select sensor types, appearing at the SDK
    351   layer as an accuracy value. For those sensors, the fact that the status field
    352   must be set is mentioned in their <a href="sensor-types.html">sensor type</a> definition.</p>
    353 <h3 id="metadata_flush_complete_events">Metadata flush complete events</h3>
    354 <p>Metadata events have the same type as normal sensor events:
    355   <code>sensors_event_meta_data_t = sensors_event_t</code>. They are returned together with
    356   other sensor events through poll. They possess the following fields:</p>
    357 <p><strong>version:</strong> Must be <code>META_DATA_VERSION</code></p>
    358 <p><strong>type:</strong> Must be <code>SENSOR_TYPE_META_DATA</code></p>
    359 <p><strong>sensor, reserved, and timestamp</strong>: Must be 0</p>
    360 <p><strong>meta_data.what:</strong> Contains the metadata type for this event. There is currently a
    361   single valid metadata type: <code>META_DATA_FLUSH_COMPLETE</code>.</p>
    362 <p><code>META_DATA_FLUSH_COMPLETE</code> events represent the completion of the flush of a
    363   sensor FIFO. When <code>meta_data.what=META_DATA_FLUSH_COMPLETE</code>, <code>meta_data.sensor</code>
    364   must be set to the handle of the sensor that has been flushed. They are
    365   generated when and only when <code>flush</code> is called on a sensor. See the section on
    366   the <a href="#flush_sensor">flush</a> function for more information.</p>
    367 
    368   </body>
    369 </html>
    370