mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-04 05:51:34 +00:00
BUG=chrome-os-partner:7498
TEST=powerled {off, red, yellow, green}
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Change-Id: I48beaad94d75c0ec30a969ea4b0e35f54e052085
25 lines
597 B
C
25 lines
597 B
C
/* Copyright (c) 2011 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.
|
|
*/
|
|
|
|
/* Power LED control for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_POWER_LED_H
|
|
#define __CROS_EC_POWER_LED_H
|
|
|
|
#include "common.h"
|
|
|
|
enum powerled_color {
|
|
POWERLED_OFF = 0,
|
|
POWERLED_RED,
|
|
POWERLED_YELLOW,
|
|
POWERLED_GREEN,
|
|
POWERLED_COLOR_COUNT /* Number of colors, not a color itself */
|
|
};
|
|
|
|
/* Set the power adapter LED to the specified color. */
|
|
int powerled_set(enum powerled_color color);
|
|
|
|
#endif /* __CROS_EC_POWER_LED_H */
|