mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-23 08:26:23 -06:00
644a13c730
If the usbdebug option is present, pause at the end of the USB scan until a key is pressed. Otherwise, if the keyboard=usb option is present and no USB keyboards were discovered, pause for 10 seconds. Otherwise don't pause.
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
/**
|
|
* \file
|
|
*
|
|
* Provides the keyboard interface. It converts incoming key codes to
|
|
* ASCII characters.
|
|
*
|
|
*//*
|
|
* Copyright (C) 2020-2022 Martin Whitaker.
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
|
|
/**
|
|
* The Escape character.
|
|
*/
|
|
#define ESC 27
|
|
|
|
/**
|
|
* A set of supported keyboard types.
|
|
*/
|
|
typedef enum {
|
|
KT_NONE = 0,
|
|
KT_LEGACY = 1,
|
|
KT_USB = 2
|
|
} keyboard_types_t;
|
|
|
|
/**
|
|
* The set of enabled keyboard types
|
|
*/
|
|
extern keyboard_types_t keyboard_types;
|
|
|
|
/**
|
|
* Initialises the keyboard interface.
|
|
*/
|
|
void keyboard_init(void);
|
|
|
|
/**
|
|
* Checks if a key has been pressed and returns the primary ASCII character
|
|
* corresponding to that key if so, otherwise returns the null character.
|
|
* F1 to F10 are mapped to the corresponding decimal digit (F10 -> 0). All
|
|
* other keys that don't have a corresponding ASCII character are ignored.
|
|
* Characters are only returned for key presses, not key releases. A US
|
|
* keyboard layout is assumed (because we can't easily do anything else).
|
|
*/
|
|
char get_key(void);
|
|
|
|
#endif // KEYBOARD_H
|