mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 07:55:06 +00:00
20 lines
445 B
C
20 lines
445 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Generic device type for i8080 (8080-series parallel) LCD bus controllers.
|
|
*
|
|
* Unlike SPI_CONTROLLER_TYPE, there is no locking API: an i80 bus only ever has one
|
|
* consumer (a single display panel) in every known board, so no arbitration is needed.
|
|
*/
|
|
extern const struct DeviceType I8080_CONTROLLER_TYPE;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|