ipsdisplay
2.1.0.0
|
This file contains API for IPS Display Click Driver. More...
#include "mikrosdk_version.h"
#include "drv_digital_out.h"
#include "drv_digital_in.h"
#include "drv_spi_master.h"
#include "spi_specifics.h"
#include "ipsdisplay_resources.h"
Go to the source code of this file.
Data Structures | |
struct | ipsdisplay_t |
IPS Display Click context object. More... | |
struct | ipsdisplay_cfg_t |
IPS Display Click configuration object. More... | |
struct | ipsdisplay_point_t |
IPS Display Click point coordinates object. More... | |
Enumerations | |
enum | ipsdisplay_return_value_t { IPSDISPLAY_OK = 0, IPSDISPLAY_ERROR = -1 } |
IPS Display Click return value data. More... | |
Functions | |
void | ipsdisplay_cfg_setup (ipsdisplay_cfg_t *cfg) |
IPS Display configuration object setup function. More... | |
err_t | ipsdisplay_init (ipsdisplay_t *ctx, ipsdisplay_cfg_t *cfg) |
IPS Display initialization function. More... | |
err_t | ipsdisplay_default_cfg (ipsdisplay_t *ctx) |
IPS Display default configuration function. More... | |
err_t | ipsdisplay_write_cmd (ipsdisplay_t *ctx, uint8_t cmd) |
IPS Display write cmd function. More... | |
err_t | ipsdisplay_write_cmd_par (ipsdisplay_t *ctx, uint8_t cmd, uint8_t *data_in, uint8_t len) |
IPS Display write cmd par function. More... | |
err_t | ipsdisplay_write_data (ipsdisplay_t *ctx, uint16_t *data_in, uint16_t len) |
IPS Display write data function. More... | |
void | ipsdisplay_disable_device (ipsdisplay_t *ctx) |
IPS Display disable device function. More... | |
void | ipsdisplay_enable_device (ipsdisplay_t *ctx) |
IPS Display enable device function. More... | |
void | ipsdisplay_reset_device (ipsdisplay_t *ctx) |
IPS Display reset device function. More... | |
void | ipsdisplay_enter_cmd_mode (ipsdisplay_t *ctx) |
IPS Display enter cmd mode function. More... | |
void | ipsdisplay_enter_data_mode (ipsdisplay_t *ctx) |
IPS Display enter data mode function. More... | |
err_t | ipsdisplay_set_rotation (ipsdisplay_t *ctx, uint8_t rotation) |
IPS Display set rotation function. More... | |
err_t | ipsdisplay_set_pos (ipsdisplay_t *ctx, ipsdisplay_point_t start_pt, ipsdisplay_point_t end_pt) |
IPS Display set pos function. More... | |
err_t | ipsdisplay_fill_screen (ipsdisplay_t *ctx, uint16_t color) |
IPS Display fill screen function. More... | |
err_t | ipsdisplay_write_char (ipsdisplay_t *ctx, ipsdisplay_point_t start_pt, uint8_t data_in, uint16_t color) |
IPS Display write char function. More... | |
err_t | ipsdisplay_write_string (ipsdisplay_t *ctx, ipsdisplay_point_t start_pt, uint8_t *data_in, uint16_t color) |
IPS Display write string function. More... | |
err_t | ipsdisplay_draw_pixel (ipsdisplay_t *ctx, ipsdisplay_point_t start_pt, uint16_t color) |
IPS Display draw pixel function. More... | |
err_t | ipsdisplay_draw_line (ipsdisplay_t *ctx, ipsdisplay_point_t start_pt, ipsdisplay_point_t end_pt, uint16_t color) |
IPS Display draw line function. More... | |
err_t | ipsdisplay_draw_rectangle (ipsdisplay_t *ctx, ipsdisplay_point_t start_pt, ipsdisplay_point_t end_pt, uint16_t color) |
IPS Display draw rectangle function. More... | |
err_t | ipsdisplay_draw_circle (ipsdisplay_t *ctx, ipsdisplay_point_t center_pt, uint8_t radius, uint16_t color) |
IPS Display draw circle function. More... | |
err_t | ipsdisplay_draw_picture (ipsdisplay_t *ctx, uint8_t rotation, const uint16_t *image) |
IPS Display draw picture function. More... | |
This file contains API for IPS Display Click Driver.