28d663f6b6
* Move disp_spi.c and tp_spi.c to lv_port * Move esp_lcd_backlight to lv_port * Move disp_spi.h and tp_spi.h to lv_port
46 lines
903 B
C
46 lines
903 B
C
/**
|
|
* @file tp_spi.h
|
|
*
|
|
*/
|
|
|
|
#ifndef TP_SPI_H
|
|
#define TP_SPI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include <stdint.h>
|
|
#include <driver/spi_master.h>
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
void tp_spi_add_device(spi_host_device_t host);
|
|
void tp_spi_add_device_config(spi_host_device_t host, spi_device_interface_config_t *config);
|
|
void tp_spi_xchg(uint8_t* data_send, uint8_t* data_recv, uint8_t byte_count);
|
|
void tp_spi_write_reg(uint8_t* data, uint8_t byte_count);
|
|
void tp_spi_read_reg(uint8_t reg, uint8_t* data, uint8_t byte_count);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /*TP_SPI_H*/
|