Library to control a Graphics TFT connected to 4-wire SPI - revised for the Raio RA8875 Display Controller.

Dependents:   FRDM_RA8875_mPaint RA8875_Demo RA8875_KeyPadDemo SignalGenerator ... more

Fork of SPI_TFT by Peter Drescher

See Components - RA8875 Based Display

Enhanced touch-screen support - where it previous supported both the Resistive Touch and Capacitive Touch based on the FT5206 Touch Controller, now it also has support for the GSL1680 Touch Controller.

Offline Help Manual (Windows chm)

/media/uploads/WiredHome/ra8875.zip.bin (download, rename to .zip and unzip)

GraphicsDisplayGIF.h

Committer:
WiredHome
Date:
2019-09-21
Revision:
190:3132b7dfad82
Parent:
152:a013ac0133e4

File content as of revision 190:3132b7dfad82:


#ifndef GRAPHICSDISPLAYGIF_H
#define GRAPHICSDISPLAYGIF_H

typedef struct {
    uint16_t image_left_position;
    uint16_t image_top_position;
    uint16_t image_width;
    uint16_t image_height;
    uint8_t fields;
} gif_image_descriptor_t;
const uint16_t gif_image_descriptor_size = 9;

typedef struct {
    uint16_t width;
    uint16_t height;
    uint8_t fields;
    uint8_t background_color_index;
    uint8_t pixel_aspect_ratio;
} gif_screen_descriptor_t;
const uint16_t gif_screen_descriptor_size = 7;

#endif // GRAPHICSDISPLAYGIF_H