blob: ecf3bb3d87b5493e27dff45b6b4aefca4a5754f1 [file] [log] [blame]
// Copyright 2018 The Chromium OS 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 CHROMEOS_CONFIG_EC_CONFIG_H_
#define CHROMEOS_CONFIG_EC_CONFIG_H_
#include <stdint.h>
#include <stdlib.h>
struct sku_info {
const uint8_t sku;
const uint8_t has_base_accelerometer :1;
const uint8_t has_lid_accelerometer :1;
const uint8_t is_lid_convertible :1;
};
extern const size_t NUM_SKUS;
extern const struct sku_info ALL_SKUS[];
#endif // CHROMEOS_CONFIG_EC_CONFIG_H_