Skip to content

Commit 70ced73

Browse files
authored
Correct a typing error in InkHUD display driver (#6651)
* Fix LCMEN2R13EFC1 LUT A typing error when the driver was initially created. * Spelling..
1 parent 24e9539 commit 70ced73

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/graphics/niche/Drivers/EInk/LCMEN2R13EFC1.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,10 @@ static const uint8_t LUT_FAST_BW[] = {
4242
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //
4343
};
4444

45-
// Look up table: fash refresh, pixels which change from white to black
45+
// Look up table: fast refresh, pixels which change from white to black
4646
static const uint8_t LUT_FAST_WB[] = {
47-
0x01, 0x46, 0x42, 0x01, 0x01, 0x01, 0x01, //
48-
0x01, 0x46, 0x42, 0x01, 0x01, 0x01, 0x01, //
4947
0x01, 0x46, 0x43, 0x02, 0x01, 0x01, 0x01, //
48+
0x01, 0x46, 0x42, 0x01, 0x01, 0x01, 0x01, //
5049
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //
5150
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //
5251
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //
@@ -55,7 +54,7 @@ static const uint8_t LUT_FAST_WB[] = {
5554
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //
5655
};
5756

58-
// Look up table: fash refresh, pixels which remain black
57+
// Look up table: fast refresh, pixels which remain black
5958
static const uint8_t LUT_FAST_BB[] = {
6059
0x01, 0x06, 0x03, 0x42, 0x41, 0x01, 0x01, //
6160
0x01, 0x06, 0x02, 0x01, 0x01, 0x01, 0x01, //

0 commit comments

Comments
 (0)