feat(rlcd): add Waveshare ST7305 board support

This commit is contained in:
Adolfo Reyna
2026-07-23 23:16:58 -04:00
parent 29e80cfd65
commit a60c9840ca
13 changed files with 768 additions and 0 deletions
@@ -0,0 +1,25 @@
// SPDX-License-Identifier: Apache-2.0
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
#include <stdint.h>
#include <tactility/drivers/gpio.h>
struct St7305Config {
uint16_t horizontal_resolution;
uint16_t vertical_resolution;
uint32_t pixel_clock_hz;
uint8_t transaction_queue_depth;
struct GpioPinSpec pin_dc;
struct GpioPinSpec pin_reset;
bool invert_color;
};
#ifdef __cplusplus
}
#endif