ESP8266 ILI9341 display support code with printf sources, wire-frame viewer and custom fonts
1.0
ESP8266ILI9341DisplayProject
|
Go to the source code of this file.
Macros | |
#define | BIT_SET(x, y) (x |= (1 << (y))) |
Note: IF x and y are constants the compiler will fully reduce the expression. More... | |
#define | BIT_CLR(x, y) (x &= ~(1 << (y))) |
#define | BIT_TST(x, y) ((x & (1 << (y))) ? (int) 1 : (int) 0) |