blob: 4dc60f82a05ca7dacec0d00917a32f03d42abc6f [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_LIB_DDKTL_INCLUDE_DDKTL_METADATA_LIGHT_SENSOR_H_
#define SRC_LIB_DDKTL_INCLUDE_DDKTL_METADATA_LIGHT_SENSOR_H_
namespace metadata {
struct LightSensorParams {
uint8_t gain;
uint32_t integration_time_ms;
// The polling time in milliseconds. 0 is defined as no polling.
uint32_t polling_time_ms;
};
} // namespace metadata
#endif // SRC_LIB_DDKTL_INCLUDE_DDKTL_METADATA_LIGHT_SENSOR_H_