source: ctrl/firmware/Main/SES/Core/Inc/st7789.h

Last change on this file was 105, checked in by Zed, 3 months ago

Fixing project.

File size: 535 bytes
Line 
1#ifndef __ST7789_H
2#define __ST7789_H
3
4#include <stdint.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10void ST7789_Initial(void);
11void ST7789_Write_Cmd(uint8_t cmd);
12void ST7789_Write_Data(uint8_t dh, uint8_t dl);
13void ST7789_Write_Cmd_Data(uint8_t cmdp);
14void show_picture(void);
15void ST7789_SetPos(unsigned char x0, unsigned char x1, unsigned y0, unsigned y1);
16void ST7789_Write_Data_U16(unsigned y);
17void ST7789_WriteMultiData(uint8_t *pData, int NumItems);
18
19#ifdef __cplusplus
20}
21#endif
22
23#endif /* __ST7789_H */
Note: See TracBrowser for help on using the repository browser.