blob: ed16146f5a9c96909a670947254442df650a4134 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* Copyright 2020 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 is a confidence check program for boards that have LEDs. */
#include "common.h"
#include "gpio.h"
#include "hooks.h"
#ifndef CONFIG_BLINK_LEDS
#error The macro CONFIG_BLINK_LEDS must be specified to use BLINK.
#endif
static const enum gpio_signal leds[] = { CONFIG_BLINK_LEDS };
BUILD_ASSERT(ARRAY_SIZE(leds) <= sizeof(int)*8, "Too many LEDs to drive.");
BUILD_ASSERT(ARRAY_SIZE(leds) > 0, "Must have at least one LED to blink.");
static void blink(void)
{
static int led_values;
int i;
for (i = 0; i < ARRAY_SIZE(leds); i++)
gpio_set_level(leds[i], BIT(i) & led_values);
led_values++;
}
DECLARE_HOOK(HOOK_TICK, blink, HOOK_PRIO_DEFAULT);
|