Landtiger LPC1768 C BigLib 1
A self made, custom C library for the LandTiger board.
 
Loading...
Searching...
No Matches
glcd_lowlevel.h
Go to the documentation of this file.
1#ifndef __GLCD_LL_H
2#define __GLCD_LL_H
3
4#include "types.h"
5
6// This code handles the low-level operations of the GLCD. It's
7// private to the GLCD library and should not be used by the user.
8
9void __LCD_LL_Init(u16 orientation);
10
12
13void __LCD_LL_SetPointColor(u16 rgb565, u16 x, u16 y);
14
15void __LCD_LL_FillScreen(u16 color);
16
17#endif
void __LCD_LL_FillScreen(u16 color)
void __LCD_LL_Init(u16 orientation)
u16 __LCD_LL_GetPointColor(u16 x, u16 y)
void __LCD_LL_SetPointColor(u16 rgb565, u16 x, u16 y)
uint16_t u16
Definition types.h:7