2021-02-09 04:14:29 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 Hubert Miś
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief FT8XX serial driver API
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_DRV_H_
|
|
|
|
#define ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_DRV_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2022-05-06 16:25:46 +08:00
|
|
|
#include <zephyr/drivers/gpio.h>
|
|
|
|
#include <zephyr/device.h>
|
2021-02-09 04:14:29 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int ft8xx_drv_init(void);
|
|
|
|
int ft8xx_drv_read(uint32_t address, uint8_t *data, unsigned int length);
|
|
|
|
int ft8xx_drv_write(uint32_t address, const uint8_t *data, unsigned int length);
|
|
|
|
int ft8xx_drv_command(uint8_t command);
|
|
|
|
|
|
|
|
extern void ft8xx_drv_irq_triggered(const struct device *dev,
|
|
|
|
struct gpio_callback *cb, uint32_t pins);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ZEPHYR_DRIVERS_DISPLAY_FT8XX_FT8XX_DRV_H_ */
|