[Keymap] Lily58 : HELL0 NAVI. Interface (#15469)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>
This commit is contained in:
druotoni 2022-01-13 20:00:35 +01:00 committed by GitHub
parent 8a6da095d2
commit b3c0548ed3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 2879 additions and 0 deletions

View file

@ -0,0 +1,18 @@
// Copyright 2021 Nicolas Druoton (druotoni)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
// states timing
#define BOOTING_TIME_TRESHOLD 7000
#define WAKING_UP_TIME_TRESHOLD 300
#define IDLE_TIME_TRESHOLD 4000
#define HALTING_TIME_TRESHOLD IDLE_TIME_TRESHOLD + 6000
#define SLEEP_TIME_TRESHOLD HALTING_TIME_TRESHOLD + 8000
typedef uint8_t gui_state_t;
enum gui_state { _WAKINGUP = 0, _IDLE, _SLEEP, _UP, _BOOTING, _HALTING };
gui_state_t get_gui_state(void);
void update_gui_state(void);
uint8_t get_glitch_probability(void);