Skip to content
Snippets Groups Projects
Commit eb1026d4 authored by Giuliano's avatar Giuliano Committed by Scott Lahteine
Browse files

[2.0.x] Fix compile warning (#10931)

parent a5b0bf86
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@
#define ST7565_V0_RATIO(N) (0x20 | ((N) & 0x7))
#define ST7565_CONTRAST(N) (0x81), (N)
#define ST7565_COLUMN_ADR(N) (0x10 | ((N) >> 4) & 0xF), (0x00 | ((N) & 0xF))
#define ST7565_COLUMN_ADR(N) (0x10 | (((N) >> 4) & 0xF)), ((N) & 0xF)
#define ST7565_PAGE_ADR(N) (0xB0 | (N))
#define ST7565_START_LINE(N) (0x40 | (N))
#define ST7565_SLEEP_MODE() (0xAC)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment