2023-02-27 11:11:03 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022, 2023 - Tillitis AB
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LED_H
|
|
|
|
#define LED_H
|
|
|
|
|
|
|
|
#include "../tk1_mem.h"
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
// clang-format off
|
2023-03-01 05:50:24 -05:00
|
|
|
#define LED_BLACK 0
|
|
|
|
#define LED_RED (1 << TK1_MMIO_TK1_LED_R_BIT)
|
2023-02-27 11:11:03 -05:00
|
|
|
#define LED_GREEN (1 << TK1_MMIO_TK1_LED_G_BIT)
|
2023-03-01 05:50:24 -05:00
|
|
|
#define LED_BLUE (1 << TK1_MMIO_TK1_LED_B_BIT)
|
2023-02-27 11:11:03 -05:00
|
|
|
#define LED_WHITE (LED_RED | LED_GREEN | LED_BLUE)
|
2023-03-01 05:50:24 -05:00
|
|
|
// clang-format on
|
2023-02-27 11:11:03 -05:00
|
|
|
|
2023-03-16 09:25:17 -04:00
|
|
|
void set_led(uint32_t led_value);
|
2023-02-27 11:11:03 -05:00
|
|
|
void forever_redflash();
|
|
|
|
#endif
|