mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
PULSE and TEST sequences are not used anywhere. Remove them to save flash space. Also, fix msleep(MSEC) calls in the unit test; it's essentially usleep(SECOND) written in an incorrect way. BUG=chrome-os-partner:32203 TEST=make buildall BRANCH=None Change-Id: I61ba897df632538eb89364a4c913d5fee87f3864 Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/220711 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
23 lines
735 B
C
23 lines
735 B
C
/* Copyright (c) 2012 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.
|
|
*
|
|
* This defines a list of lightbar messages. It's done in this odd way so that
|
|
* we can automatically derive the correct constants, functions, and message
|
|
* types.
|
|
*/
|
|
#define LIGHTBAR_MSG_LIST \
|
|
LBMSG(ERROR), /* 0 */ \
|
|
LBMSG(S5), /* 1 */ \
|
|
LBMSG(S3), /* 2 */ \
|
|
LBMSG(S0), /* 3 */ \
|
|
LBMSG(S5S3), /* 4 */ \
|
|
LBMSG(S3S0), /* 5 */ \
|
|
LBMSG(S0S3), /* 6 */ \
|
|
LBMSG(S3S5), /* 7 */ \
|
|
LBMSG(STOP), /* 8 */ \
|
|
LBMSG(RUN), /* 9 */ \
|
|
LBMSG(KONAMI), /* A */ \
|
|
LBMSG(TAP), /* B */ \
|
|
LBMSG(PROGRAM), /* C */
|