diff options
| -rw-r--r-- | common_features.mk | 2 | ||||
| -rw-r--r-- | drivers/qwiic/micro_oled.c | 482 | ||||
| -rw-r--r-- | drivers/qwiic/micro_oled.h | 134 | ||||
| -rw-r--r-- | drivers/qwiic/qwiic.c | 31 | ||||
| -rw-r--r-- | drivers/qwiic/qwiic.h | 28 | ||||
| -rw-r--r-- | drivers/qwiic/qwiic.mk | 17 | ||||
| -rw-r--r-- | drivers/qwiic/util/font5x7.h | 39 | ||||
| -rw-r--r-- | drivers/qwiic/util/font8x16.h | 39 | ||||
| -rw-r--r-- | lib/python/qmk/info.py | 2 | ||||
| -rw-r--r-- | quantum/keyboard.c | 10 |
10 files changed, 1 insertions, 783 deletions
diff --git a/common_features.mk b/common_features.mk index 3158706f8..3fe834219 100644 --- a/common_features.mk +++ b/common_features.mk | |||
| @@ -613,8 +613,6 @@ ifeq ($(strip $(ST7565_ENABLE)), yes) | |||
| 613 | SRC += st7565.c | 613 | SRC += st7565.c |
| 614 | endif | 614 | endif |
| 615 | 615 | ||
| 616 | include $(DRIVER_PATH)/qwiic/qwiic.mk | ||
| 617 | |||
| 618 | ifeq ($(strip $(UCIS_ENABLE)), yes) | 616 | ifeq ($(strip $(UCIS_ENABLE)), yes) |
| 619 | OPT_DEFS += -DUCIS_ENABLE | 617 | OPT_DEFS += -DUCIS_ENABLE |
| 620 | UNICODE_COMMON := yes | 618 | UNICODE_COMMON := yes |
diff --git a/drivers/qwiic/micro_oled.c b/drivers/qwiic/micro_oled.c deleted file mode 100644 index 8dfff6968..000000000 --- a/drivers/qwiic/micro_oled.c +++ /dev/null | |||
| @@ -1,482 +0,0 @@ | |||
| 1 | /* Jim Lindblom @ SparkFun Electronics | ||
| 2 | * October 26, 2014 | ||
| 3 | * https://github.com/sparkfun/Micro_OLED_Breakout/tree/master/Firmware/Arduino/libraries/SFE_MicroOLED | ||
| 4 | * | ||
| 5 | * Modified by: | ||
| 6 | * Emil Varughese @ Edwin Robotics Pvt. Ltd. | ||
| 7 | * July 27, 2015 | ||
| 8 | * https://github.com/emil01/SparkFun_Micro_OLED_Arduino_Library/ | ||
| 9 | * | ||
| 10 | * This code was heavily based around the MicroView library, written by GeekAmmo | ||
| 11 | * (https://github.com/geekammo/MicroView-Arduino-Library). | ||
| 12 | * | ||
| 13 | * Adapted for QMK by: | ||
| 14 | * Jack Humbert <jack.humb@gmail.com> | ||
| 15 | * October 11, 2018 | ||
| 16 | * | ||
| 17 | * This program is free software: you can redistribute it and/or modify | ||
| 18 | * it under the terms of the GNU General Public License as published by | ||
| 19 | * the Free Software Foundation, either version 3 of the License, or | ||
| 20 | * (at your option) any later version. | ||
| 21 | * | ||
| 22 | * This program is distributed in the hope that it will be useful, | ||
| 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 25 | * GNU General Public License for more details. | ||
| 26 | * | ||
| 27 | * You should have received a copy of the GNU General Public License | ||
| 28 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 29 | */ | ||
| 30 | #include "micro_oled.h" | ||
| 31 | #include "print.h" | ||
| 32 | #include <stdlib.h> | ||
| 33 | #include "util/font5x7.h" | ||
| 34 | #include "util/font8x16.h" | ||
| 35 | #include <string.h> | ||
| 36 | |||
| 37 | #define TOTALFONTS 2 | ||
| 38 | const unsigned char* fonts_pointer[] = {font5x7, font8x16}; | ||
| 39 | |||
| 40 | uint8_t foreColor, drawMode, fontWidth, fontHeight, fontType, fontStartChar, fontTotalChar, cursorX, cursorY; | ||
| 41 | uint16_t fontMapWidth; | ||
| 42 | |||
| 43 | #ifndef _BV | ||
| 44 | # define _BV(x) (1 << (x)) | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #define swap(a, b) \ | ||
| 48 | { \ | ||
| 49 | uint8_t t = a; \ | ||
| 50 | a = b; \ | ||
| 51 | b = t; \ | ||
| 52 | } | ||
| 53 | |||
| 54 | uint8_t micro_oled_transfer_buffer[20]; | ||
| 55 | static uint8_t micro_oled_screen_current[LCDWIDTH * LCDHEIGHT / 8] = {0}; | ||
| 56 | |||
| 57 | /* LCD Memory organised in 64 horizontal pixel and 6 rows of byte | ||
| 58 | B B .............B ----- | ||
| 59 | y y .............y \ | ||
| 60 | t t .............t \ | ||
| 61 | e e .............e \ | ||
| 62 | 0 1 .............63 \ | ||
| 63 | \ | ||
| 64 | D0 D0.............D0 \ | ||
| 65 | D1 D1.............D1 / ROW 0 | ||
| 66 | D2 D2.............D2 / | ||
| 67 | D3 D3.............D3 / | ||
| 68 | D4 D4.............D4 / | ||
| 69 | D5 D5.............D5 / | ||
| 70 | D6 D6.............D6 / | ||
| 71 | D7 D7.............D7 ---- | ||
| 72 | */ | ||
| 73 | #ifdef NO_LCD_SPLASH | ||
| 74 | // do not initialize with a splash screen | ||
| 75 | static uint8_t micro_oled_screen_buffer[LCDWIDTH * LCDHEIGHT / 8] = {0}; | ||
| 76 | #else | ||
| 77 | # if LCDWIDTH == 64 | ||
| 78 | # if LCDHEIGHT == 48 | ||
| 79 | static uint8_t micro_oled_screen_buffer[] = { | ||
| 80 | // QMK Logo - generated at http://www.majer.ch/lcd/adf_bitmap.php | ||
| 81 | // 64x48 image | ||
| 82 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0xF0, 0x00, 0x00, 0x00, 0xF0, 0xF0, 0x00, 0x00, 0x00, 0xF0, 0xF0, 0x00, 0x00, 0x00, 0xF0, 0xF0, 0x00, 0x00, 0x00, 0xF0, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x60, 0x60, 0x60, 0xF8, 0xFE, 0xFE, 0xFF, 0xFF, 0xFF, 0x1F, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0x1F, 0xFF, 0xFF, 0xFF, 0xFE, 0xFE, 0xF8, 0x60, 0x60, 0x60, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 83 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8C, 0x8C, 0x8C, 0x8C, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x8C, 0x8C, 0x8C, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x31, 0x31, 0x31, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0xF8, 0xF1, 0xE3, 0xE7, 0xCF, 0xCF, 0xCF, 0xCF, 0x00, 0x00, 0xCF, 0xCF, 0xCF, 0xC7, 0xE7, 0xE3, 0xF1, 0xF8, 0xFC, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x31, 0x31, 0x31, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 84 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x06, 0x1F, 0x7F, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xF8, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0x7F, 0x1F, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x0F, 0x00, 0x00, 0x00, 0x0F, 0x0F, 0x00, 0x00, 0x00, 0x0F, 0x0F, 0x00, 0x00, 0x00, 0x0F, 0x0F, 0x00, 0x00, 0x00, 0x0F, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; | ||
| 85 | # endif | ||
| 86 | # elif LCDWIDTH == 128 | ||
| 87 | # if LCDHEIGHT == 32 | ||
| 88 | static uint8_t micro_oled_screen_buffer[LCDWIDTH * LCDHEIGHT / 8] = { | ||
| 89 | // 128x32 qmk image | ||
| 90 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xC0, 0xE0, 0xE0, 0xFC, 0xFC, 0xE0, 0xFC, 0xFC, 0xE0, 0xF0, 0xFC, 0xE0, 0xE0, 0xFC, 0xE0, 0xE0, 0xFC, 0xFC, 0xE0, 0xE0, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x10, 0x10, 0x30, 0xE0, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x80, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x80, 0x80, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x00, 0x00, 0x80, 0x80, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 91 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0xB2, 0xB2, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0x03, 0xFF, 0xFF, 0xFF, 0x03, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xB7, 0xB2, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x02, 0x02, 0x03, 0x01, 0x00, 0x06, 0x1F, 0x10, 0x10, 0x10, 0x1F, 0x06, 0x00, 0x03, 0x1E, 0x18, 0x0F, 0x01, 0x0F, 0x18, 0x1E, 0x01, 0x00, 0x0F, 0x1F, 0x12, 0x02, 0x12, 0x13, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x0E, 0x1F, 0x12, 0x02, 0x12, 0x13, 0x00, 0x00, 0x1F, 0x10, 0x10, 0x10, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 92 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x4D, 0x4D, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xF8, 0xF9, 0xF3, 0xF3, 0xC0, 0x80, 0xF3, 0xF3, 0xF3, 0xF9, 0xFC, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xED, 0x4D, 0x4D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x20, 0x10, 0x10, 0xE0, 0xC0, 0x00, 0x70, 0xC0, 0x00, 0x80, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0C, 0x04, 0x04, 0x04, 0x04, 0x1C, 0xF0, 0x00, 0x00, 0xFC, 0x0C, 0x38, 0xE0, 0x00, 0x00, 0xC0, 0x38, 0x0C, 0xFC, 0x00, 0x00, 0xFC, 0xFC, 0x60, 0x90, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 93 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x07, 0x07, 0x3F, 0x3F, 0x07, 0x3F, 0x3F, 0x07, 0x0F, 0x3F, 0x07, 0x07, 0x3F, 0x07, 0x07, 0x3F, 0x3F, 0x07, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x06, 0x04, 0x04, 0x07, 0x01, 0x00, 0x00, 0x13, 0x1E, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x04, 0x04, 0x04, 0x04, 0x07, 0x0D, 0x08, 0x00, 0x07, 0x00, 0x00, 0x01, 0x07, 0x07, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x07, 0x07, 0x00, 0x01, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; | ||
| 94 | # elif LCDHEIGHT == 64 | ||
| 95 | static uint8_t micro_oled_screen_buffer[LCDWIDTH * LCDHEIGHT / 8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0xC0, 0x00, 0x00, 0xC0, 0xC0, 0x00, 0x00, 0xC0, 0xC0, 0x00, 0x00, 0xC0, 0xC0, 0x00, 0x00, 0xC0, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 96 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0xC0, 0xC0, 0xC0, 0xF8, 0xFC, 0xFC, 0xFE, 0xFE, 0xFF, 0x7F, 0x7E, 0xFE, 0xFF, 0xFF, 0xFE, 0xFE, 0x7F, 0x7F, 0xFE, 0xFE, 0xFF, 0xFF, 0xFE, 0x7E, 0x7F, 0xFF, 0xFE, 0xFE, 0xFC, 0xFC, 0xF8, 0xC0, 0xC0, 0xC0, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 97 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x88, 0x88, 0xDD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDD, 0x88, 0x88, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 98 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xF8, 0xF0, 0xF3, 0xF3, 0xE7, 0xE7, 0x00, 0x00, 0xE7, 0xE7, 0xF3, 0xF3, 0xF0, 0xF8, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x99, 0x99, 0x99, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 99 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x0F, 0x1F, 0x3F, 0x3F, 0x3F, 0xFF, 0xFF, 0x3F, 0x3F, 0xFF, 0xFF, 0x3F, 0x3F, 0xFF, 0xFF, 0x3F, 0x3F, 0xFF, 0xFF, 0x3F, 0x3F, 0xFF, 0xFF, 0x3F, 0x3F, 0x3F, 0x1F, 0x0F, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 100 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x03, 0x01, 0x00, 0x80, 0x03, 0x03, 0x00, 0x00, 0x01, 0x03, 0x00, 0x80, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 101 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x11, 0x11, 0x11, 0x0E, 0x00, 0x70, 0x88, 0x04, 0x04, 0x04, 0xF8, 0x00, 0x00, 0x3C, 0xE0, 0xC0, 0x38, 0x1C, 0xE0, 0x80, 0x70, 0x0C, 0x00, 0xF8, 0xAC, 0x24, 0x24, 0x3C, 0x30, 0x00, 0x00, 0xFC, 0x0C, 0x04, 0x00, 0xF8, 0xAC, 0x24, 0x24, 0x2C, 0x30, 0x00, 0x70, 0xDC, 0x04, 0x04, 0x88, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x04, 0x04, 0xF8, 0x00, 0x04, 0x3C, 0xE0, 0x80, 0xF0, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x83, 0x01, 0x01, 0x01, 0x81, 0xFE, 0x3C, 0x00, 0x00, 0xFF, 0x03, 0x0E, 0x70, 0xC0, 0xE0, 0x38, 0x06, 0x03, 0xFF, 0x00, 0x00, 0xFF, 0x18, 0x38, 0x66, 0xC3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 102 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 103 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; | ||
| 104 | // TODO: generate bitmap of QMK logo here | ||
| 105 | # endif | ||
| 106 | # else | ||
| 107 | // catchall for custom screen sizes | ||
| 108 | static uint8_t micro_oled_screen_buffer[LCDWIDTH * LCDHEIGHT / 8] = {0}; | ||
| 109 | # endif | ||
| 110 | #endif | ||
| 111 | |||
| 112 | void micro_oled_init(void) { | ||
| 113 | i2c_init(); | ||
| 114 | |||
| 115 | #ifdef __AVR__ | ||
| 116 | i2c_start(I2C_ADDRESS_SA0_1, 100); | ||
| 117 | #else | ||
| 118 | i2c_start(I2C_ADDRESS_SA0_1); | ||
| 119 | #endif | ||
| 120 | |||
| 121 | // Display Init sequence for 64x48 OLED module | ||
| 122 | send_command(DISPLAYOFF); // 0xAE | ||
| 123 | |||
| 124 | send_command(SETDISPLAYCLOCKDIV); // 0xD5 | ||
| 125 | send_command(0x80); // the suggested ratio 0x80 | ||
| 126 | |||
| 127 | send_command(SETMULTIPLEX); // 0xA8 | ||
| 128 | send_command(LCDHEIGHT - 1); | ||
| 129 | |||
| 130 | send_command(SETDISPLAYOFFSET); // 0xD3 | ||
| 131 | send_command(0x00); // no offset | ||
| 132 | |||
| 133 | send_command(SETSTARTLINE | 0x00); // line #0 | ||
| 134 | |||
| 135 | send_command(CHARGEPUMP); // enable charge pump | ||
| 136 | send_command(0x14); | ||
| 137 | |||
| 138 | send_command(NORMALDISPLAY); // 0xA6 | ||
| 139 | send_command(DISPLAYALLONRESUME); // 0xA4 | ||
| 140 | |||
| 141 | // display at regular orientation | ||
| 142 | send_command(SEGREMAP | 0x1); | ||
| 143 | send_command(COMSCANDEC); | ||
| 144 | |||
| 145 | // rotate display 180 | ||
| 146 | #ifdef micro_oled_rotate_180 | ||
| 147 | send_command(SEGREMAP); | ||
| 148 | send_command(COMSCANINC); | ||
| 149 | #endif | ||
| 150 | |||
| 151 | send_command(MEMORYMODE); | ||
| 152 | send_command(0x02); // 0x02 = 10b, Page addressing mode | ||
| 153 | |||
| 154 | send_command(SETCOMPINS); // 0xDA | ||
| 155 | if (LCDHEIGHT > 32) { | ||
| 156 | send_command(0x12); | ||
| 157 | } else { | ||
| 158 | send_command(0x02); | ||
| 159 | } | ||
| 160 | send_command(SETCONTRAST); // 0x81 | ||
| 161 | send_command(0x8F); | ||
| 162 | |||
| 163 | send_command(SETPRECHARGE); // 0xd9 | ||
| 164 | send_command(0xF1); | ||
| 165 | |||
| 166 | send_command(SETVCOMDESELECT); // 0xDB | ||
| 167 | send_command(0x40); | ||
| 168 | |||
| 169 | send_command(DISPLAYON); //--turn on oled panel | ||
| 170 | clear_screen(); // Erase hardware memory inside the OLED controller to avoid random data in memory. | ||
| 171 | send_buffer(); | ||
| 172 | } | ||
| 173 | |||
| 174 | void send_command(uint8_t command) { | ||
| 175 | micro_oled_transfer_buffer[0] = I2C_COMMAND; | ||
| 176 | micro_oled_transfer_buffer[1] = command; | ||
| 177 | i2c_transmit(I2C_ADDRESS_SA0_1 << 1, micro_oled_transfer_buffer, 2, 100); | ||
| 178 | } | ||
| 179 | |||
| 180 | void send_data(uint8_t data) { | ||
| 181 | micro_oled_transfer_buffer[0] = I2C_DATA; | ||
| 182 | micro_oled_transfer_buffer[1] = data; | ||
| 183 | i2c_transmit(I2C_ADDRESS_SA0_1 << 1, micro_oled_transfer_buffer, 2, 100); | ||
| 184 | } | ||
| 185 | |||
| 186 | /** \brief Set SSD1306 page address. | ||
| 187 | Send page address command and address to the SSD1306 OLED controller. | ||
| 188 | */ | ||
| 189 | void set_page_address(uint8_t address) { | ||
| 190 | address = (0xB0 | address); | ||
| 191 | send_command(address); | ||
| 192 | } | ||
| 193 | |||
| 194 | /** \brief Set SSD1306 column address. | ||
| 195 | Send column address command and address to the SSD1306 OLED controller. | ||
| 196 | */ | ||
| 197 | void set_column_address(uint8_t address) { | ||
| 198 | send_command((0x10 | (address >> 4)) + ((128 - LCDWIDTH) >> 8)); | ||
| 199 | send_command(0x0F & address); | ||
| 200 | } | ||
| 201 | |||
| 202 | /** \brief Clear SSD1306's memory. | ||
| 203 | To clear GDRAM inside the LCD controller. | ||
| 204 | */ | ||
| 205 | void clear_screen(void) { | ||
| 206 | for (int i = 0; i < 8; i++) { | ||
| 207 | set_page_address(i); | ||
| 208 | set_column_address(0); | ||
| 209 | for (int j = 0; j < 0x80; j++) { | ||
| 210 | send_data(0); | ||
| 211 | } | ||
| 212 | } | ||
| 213 | |||
| 214 | memset(micro_oled_screen_current, 0, LCDWIDTH * LCDHEIGHT / 8); | ||
| 215 | } | ||
| 216 | |||
| 217 | /** \brief Clear SSD1306's memory. | ||
| 218 | To clear GDRAM inside the LCD controller. | ||
| 219 | */ | ||
| 220 | void clear_buffer(void) { | ||
| 221 | // 384 | ||
| 222 | memset(micro_oled_screen_buffer, 0, LCDWIDTH * LCDHEIGHT / 8); | ||
| 223 | } | ||
| 224 | |||
| 225 | /** \brief Invert display. | ||
| 226 | The PIXEL_ON color of the display will turn to PIXEL_OFF and the PIXEL_OFF will turn to PIXEL_ON. | ||
| 227 | */ | ||
| 228 | void invert_screen(bool invert) { | ||
| 229 | if (invert) { | ||
| 230 | send_command(INVERTDISPLAY); | ||
| 231 | } else { | ||
| 232 | send_command(NORMALDISPLAY); | ||
| 233 | } | ||
| 234 | } | ||
| 235 | |||
| 236 | /** \brief Set contrast. | ||
| 237 | OLED contract value from 0 to 255. Note: Contrast level is not very obvious. | ||
| 238 | */ | ||
| 239 | void set_contrast(uint8_t contrast) { | ||
| 240 | send_command(SETCONTRAST); // 0x81 | ||
| 241 | send_command(contrast); | ||
| 242 | } | ||
| 243 | |||
| 244 | /** \brief Transfer display buffer. | ||
| 245 | Sends the updated buffer to the controller - the current status is checked before to save i2c exectution time | ||
| 246 | */ | ||
| 247 | void send_buffer(void) { | ||
| 248 | uint8_t i, j; | ||
| 249 | |||
| 250 | uint8_t page_addr = 0xFF; | ||
| 251 | for (i = 0; i < LCDHEIGHT / 8; i++) { | ||
| 252 | uint8_t col_addr = 0xFF; | ||
| 253 | for (j = 0; j < LCDWIDTH; j++) { | ||
| 254 | if (micro_oled_screen_buffer[i * LCDWIDTH + j] != micro_oled_screen_current[i * LCDWIDTH + j]) { | ||
| 255 | if (page_addr != i) { | ||
| 256 | set_page_address(i); | ||
| 257 | page_addr = i; | ||
| 258 | } | ||
| 259 | if (col_addr != j) { | ||
| 260 | set_column_address(j); | ||
| 261 | col_addr = j + 1; | ||
| 262 | } | ||
| 263 | send_data(micro_oled_screen_buffer[i * LCDWIDTH + j]); | ||
| 264 | micro_oled_screen_current[i * LCDWIDTH + j] = micro_oled_screen_buffer[i * LCDWIDTH + j]; | ||
| 265 | } | ||
| 266 | } | ||
| 267 | } | ||
| 268 | } | ||
| 269 | |||
| 270 | /** \brief Draw pixel with color and mode. | ||
| 271 | Draw color pixel in the screen buffer's x,y position with NORM or XOR draw mode. | ||
| 272 | */ | ||
| 273 | void draw_pixel(uint8_t x, uint8_t y, uint8_t color, uint8_t mode) { | ||
| 274 | if ((x < 0) || (x >= LCDWIDTH) || (y < 0) || (y >= LCDHEIGHT)) return; | ||
| 275 | |||
| 276 | if (mode == XOR) { | ||
| 277 | if (color == PIXEL_ON) micro_oled_screen_buffer[x + (y / 8) * LCDWIDTH] ^= _BV((y % 8)); | ||
| 278 | } else { | ||
| 279 | if (color == PIXEL_ON) | ||
| 280 | micro_oled_screen_buffer[x + (y / 8) * LCDWIDTH] |= _BV((y % 8)); | ||
| 281 | else | ||
| 282 | micro_oled_screen_buffer[x + (y / 8) * LCDWIDTH] &= ~_BV((y % 8)); | ||
| 283 | } | ||
| 284 | } | ||
| 285 | |||
| 286 | /** \brief Draw line with color and mode. | ||
| 287 | Draw line using color and mode from x0,y0 to x1,y1 of the screen buffer. | ||
| 288 | */ | ||
| 289 | void draw_line(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1, uint8_t color, uint8_t mode) { | ||
| 290 | uint8_t steep = abs(y1 - y0) > abs(x1 - x0); | ||
| 291 | if (steep) { | ||
| 292 | swap(x0, y0); | ||
| 293 | swap(x1, y1); | ||
| 294 | } | ||
| 295 | |||
| 296 | if (x0 > x1) { | ||
| 297 | swap(x0, x1); | ||
| 298 | swap(y0, y1); | ||
| 299 | } | ||
| 300 | |||
| 301 | uint8_t dx, dy; | ||
| 302 | dx = x1 - x0; | ||
| 303 | dy = abs(y1 - y0); | ||
| 304 | |||
| 305 | int8_t err = dx / 2; | ||
| 306 | int8_t ystep; | ||
| 307 | |||
| 308 | if (y0 < y1) { | ||
| 309 | ystep = 1; | ||
| 310 | } else { | ||
| 311 | ystep = -1; | ||
| 312 | } | ||
| 313 | |||
| 314 | for (; x0 < x1; x0++) { | ||
| 315 | if (steep) { | ||
| 316 | draw_pixel(y0, x0, color, mode); | ||
| 317 | } else { | ||
| 318 | draw_pixel(x0, y0, color, mode); | ||
| 319 | } | ||
| 320 | err -= dy; | ||
| 321 | if (err < 0) { | ||
| 322 | y0 += ystep; | ||
| 323 | err += dx; | ||
| 324 | } | ||
| 325 | } | ||
| 326 | } | ||
| 327 | |||
| 328 | /** \brief Draw horizontal line with color and mode. | ||
| 329 | Draw horizontal line using color and mode from x,y to x+width,y of the screen buffer. | ||
| 330 | */ | ||
| 331 | void draw_line_hori(uint8_t x, uint8_t y, uint8_t width, uint8_t color, uint8_t mode) { draw_line(x, y, x + width, y, color, mode); } | ||
| 332 | |||
| 333 | /** \brief Draw vertical line. | ||
| 334 | Draw vertical line using current fore color and current draw mode from x,y to x,y+height of the screen buffer. | ||
| 335 | */ | ||
| 336 | void draw_line_vert(uint8_t x, uint8_t y, uint8_t height, bool color, uint8_t mode) { draw_line(x, y, x, y + height, color, mode); } | ||
| 337 | |||
| 338 | /** \brief Draw rectangle with color and mode. | ||
| 339 | Draw rectangle using color and mode from x,y to x+width,y+height of the screen buffer. | ||
| 340 | */ | ||
| 341 | void draw_rect(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t color, uint8_t mode) { | ||
| 342 | uint8_t tempHeight; | ||
| 343 | |||
| 344 | draw_line_hori(x, y, width, color, mode); | ||
| 345 | draw_line_hori(x, y + height - 1, width, color, mode); | ||
| 346 | |||
| 347 | tempHeight = height - 2; | ||
| 348 | |||
| 349 | // skip drawing vertical lines to avoid overlapping of pixel that will | ||
| 350 | // affect XOR plot if no pixel in between horizontal lines | ||
| 351 | if (tempHeight < 1) return; | ||
| 352 | |||
| 353 | draw_line_vert(x, y + 1, tempHeight, color, mode); | ||
| 354 | draw_line_vert(x + width - 1, y + 1, tempHeight, color, mode); | ||
| 355 | } | ||
| 356 | |||
| 357 | /** \brief Draw rectangle with color and mode. | ||
| 358 | Draw rectangle using color and mode from x,y to x+width,y+height of the screen buffer. | ||
| 359 | */ | ||
| 360 | void draw_rect_soft(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t color, uint8_t mode) { | ||
| 361 | uint8_t tempHeight; | ||
| 362 | |||
| 363 | draw_line_hori(x + 1, y, width - 2, color, mode); | ||
| 364 | draw_line_hori(x + 1, y + height - 1, width - 2, color, mode); | ||
| 365 | |||
| 366 | tempHeight = height - 2; | ||
| 367 | |||
| 368 | // skip drawing vertical lines to avoid overlapping of pixel that will | ||
| 369 | // affect XOR plot if no pixel in between horizontal lines | ||
| 370 | if (tempHeight < 1) return; | ||
| 371 | |||
| 372 | draw_line_vert(x, y + 1, tempHeight, color, mode); | ||
| 373 | draw_line_vert(x + width - 1, y + 1, tempHeight, color, mode); | ||
| 374 | } | ||
| 375 | |||
| 376 | /** \brief Draw filled rectangle with color and mode. | ||
| 377 | Draw filled rectangle using color and mode from x,y to x+width,y+height of the screen buffer. | ||
| 378 | */ | ||
| 379 | void draw_rect_filled(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t color, uint8_t mode) { | ||
| 380 | // TODO - need to optimise the memory map draw so that this function will not call pixel one by one | ||
| 381 | for (int i = x; i < x + width; i++) { | ||
| 382 | draw_line_vert(i, y, height, color, mode); | ||
| 383 | } | ||
| 384 | } | ||
| 385 | |||
| 386 | /** \brief Draw filled rectangle with color and mode. | ||
| 387 | Draw filled rectangle using color and mode from x,y to x+width,y+height of the screen buffer. | ||
| 388 | */ | ||
| 389 | void draw_rect_filled_soft(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t color, uint8_t mode) { | ||
| 390 | // TODO - need to optimise the memory map draw so that this function will not call pixel one by one | ||
| 391 | for (int i = x; i < x + width; i++) { | ||
| 392 | if (i == x || i == (x + width - 1)) | ||
| 393 | draw_line_vert(i, y + 1, height - 2, color, mode); | ||
| 394 | else | ||
| 395 | draw_line_vert(i, y, height, color, mode); | ||
| 396 | } | ||
| 397 | } | ||
| 398 | |||
| 399 | /** \brief Draw character with color and mode. | ||
| 400 | Draw character c using color and draw mode at x,y. | ||
| 401 | */ | ||
| 402 | void draw_char(uint8_t x, uint8_t y, uint8_t c, uint8_t color, uint8_t mode, uint8_t font) { | ||
| 403 | // TODO - New routine to take font of any height, at the moment limited to font height in multiple of 8 pixels | ||
| 404 | |||
| 405 | uint8_t rowsToDraw, row, tempC; | ||
| 406 | uint8_t i, j, temp; | ||
| 407 | uint16_t charPerBitmapRow, charColPositionOnBitmap, charRowPositionOnBitmap, charBitmapStartPosition; | ||
| 408 | |||
| 409 | if ((font >= TOTALFONTS) || (font < 0)) return; | ||
| 410 | |||
| 411 | uint8_t fontType = font; | ||
| 412 | uint8_t fontWidth = pgm_read_byte(fonts_pointer[fontType] + 0); | ||
| 413 | uint8_t fontHeight = pgm_read_byte(fonts_pointer[fontType] + 1); | ||
| 414 | uint8_t fontStartChar = pgm_read_byte(fonts_pointer[fontType] + 2); | ||
| 415 | uint8_t fontTotalChar = pgm_read_byte(fonts_pointer[fontType] + 3); | ||
| 416 | uint16_t fontMapWidth = (pgm_read_byte(fonts_pointer[fontType] + 4) * 100) + pgm_read_byte(fonts_pointer[fontType] + 5); // two bytes values into integer 16 | ||
| 417 | |||
| 418 | if ((c < fontStartChar) || (c > (fontStartChar + fontTotalChar - 1))) // no bitmap for the required c | ||
| 419 | return; | ||
| 420 | |||
| 421 | tempC = c - fontStartChar; | ||
| 422 | |||
| 423 | // each row (in datasheet is call page) is 8 bits high, 16 bit high character will have 2 rows to be drawn | ||
| 424 | rowsToDraw = fontHeight / 8; // 8 is LCD's page size, see SSD1306 datasheet | ||
| 425 | if (rowsToDraw <= 1) rowsToDraw = 1; | ||
| 426 | |||
| 427 | // the following draw function can draw anywhere on the screen, but SLOW pixel by pixel draw | ||
| 428 | if (rowsToDraw == 1) { | ||
| 429 | for (i = 0; i < fontWidth + 1; i++) { | ||
| 430 | if (i == fontWidth) // this is done in a weird way because for 5x7 font, there is no margin, this code add a margin after col 5 | ||
| 431 | temp = 0; | ||
| 432 | else | ||
| 433 | temp = pgm_read_byte(fonts_pointer[fontType] + FONTHEADERSIZE + (tempC * fontWidth) + i); | ||
| 434 | |||
| 435 | for (j = 0; j < 8; j++) { // 8 is the LCD's page height (see datasheet for explanation) | ||
| 436 | if (temp & 0x1) { | ||
| 437 | draw_pixel(x + i, y + j, color, mode); | ||
| 438 | } else { | ||
| 439 | draw_pixel(x + i, y + j, !color, mode); | ||
| 440 | } | ||
| 441 | |||
| 442 | temp >>= 1; | ||
| 443 | } | ||
| 444 | } | ||
| 445 | return; | ||
| 446 | } | ||
| 447 | |||
| 448 | // font height over 8 bit | ||
| 449 | // take character "0" ASCII 48 as example | ||
| 450 | charPerBitmapRow = fontMapWidth / fontWidth; // 256/8 =32 char per row | ||
| 451 | charColPositionOnBitmap = tempC % charPerBitmapRow; // =16 | ||
| 452 | charRowPositionOnBitmap = (int)(tempC / charPerBitmapRow); // =1 | ||
| 453 | charBitmapStartPosition = (charRowPositionOnBitmap * fontMapWidth * (fontHeight / 8)) + (charColPositionOnBitmap * fontWidth); | ||
| 454 | |||
| 455 | // each row on LCD is 8 bit height (see datasheet for explanation) | ||
| 456 | for (row = 0; row < rowsToDraw; row++) { | ||
| 457 | for (i = 0; i < fontWidth; i++) { | ||
| 458 | temp = pgm_read_byte(fonts_pointer[fontType] + FONTHEADERSIZE + (charBitmapStartPosition + i + (row * fontMapWidth))); | ||
| 459 | for (j = 0; j < 8; j++) { // 8 is the LCD's page height (see datasheet for explanation) | ||
| 460 | if (temp & 0x1) { | ||
| 461 | draw_pixel(x + i, y + j + (row * 8), color, mode); | ||
| 462 | } else { | ||
| 463 | draw_pixel(x + i, y + j + (row * 8), !color, mode); | ||
| 464 | } | ||
| 465 | temp >>= 1; | ||
| 466 | } | ||
| 467 | } | ||
| 468 | } | ||
| 469 | } | ||
| 470 | |||
| 471 | void draw_string(uint8_t x, uint8_t y, char* string, uint8_t color, uint8_t mode, uint8_t font) { | ||
| 472 | if ((font >= TOTALFONTS) || (font < 0)) return; | ||
| 473 | |||
| 474 | uint8_t fontType = font; | ||
| 475 | uint8_t fontWidth = pgm_read_byte(fonts_pointer[fontType] + 0); | ||
| 476 | |||
| 477 | uint8_t cur_x = x; | ||
| 478 | for (int i = 0; i < strlen(string); i++) { | ||
| 479 | draw_char(cur_x, y, string[i], color, mode, font); | ||
| 480 | cur_x += fontWidth + 1; | ||
| 481 | } | ||
| 482 | } | ||
diff --git a/drivers/qwiic/micro_oled.h b/drivers/qwiic/micro_oled.h deleted file mode 100644 index 6f9106f58..000000000 --- a/drivers/qwiic/micro_oled.h +++ /dev/null | |||
| @@ -1,134 +0,0 @@ | |||
| 1 | /* Jim Lindblom @ SparkFun Electronics | ||
| 2 | * October 26, 2014 | ||
| 3 | * https://github.com/sparkfun/Micro_OLED_Breakout/tree/master/Firmware/Arduino/libraries/SFE_MicroOLED | ||
| 4 | * | ||
| 5 | * Modified by: | ||
| 6 | * Emil Varughese @ Edwin Robotics Pvt. Ltd. | ||
| 7 | * July 27, 2015 | ||
| 8 | * https://github.com/emil01/SparkFun_Micro_OLED_Arduino_Library/ | ||
| 9 | * | ||
| 10 | * This code was heavily based around the MicroView library, written by GeekAmmo | ||
| 11 | * (https://github.com/geekammo/MicroView-Arduino-Library). | ||
| 12 | * | ||
| 13 | * Adapted for QMK by: | ||
| 14 | * Jack Humbert <jack.humb@gmail.com> | ||
| 15 | * October 11, 2018 | ||
| 16 | * | ||
| 17 | * This program is free software: you can redistribute it and/or modify | ||
| 18 | * it under the terms of the GNU General Public License as published by | ||
| 19 | * the Free Software Foundation, either version 3 of the License, or | ||
| 20 | * (at your option) any later version. | ||
| 21 | * | ||
| 22 | * This program is distributed in the hope that it will be useful, | ||
| 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 25 | * GNU General Public License for more details. | ||
| 26 | * | ||
| 27 | * You should have received a copy of the GNU General Public License | ||
| 28 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 29 | */ | ||
| 30 | #pragma once | ||
| 31 | |||
| 32 | #include "qwiic.h" | ||
| 33 | |||
| 34 | void micro_oled_init(void); | ||
| 35 | |||
| 36 | void send_command(uint8_t command); | ||
| 37 | void send_data(uint8_t data); | ||
| 38 | void set_page_address(uint8_t address); | ||
| 39 | void set_column_address(uint8_t address); | ||
| 40 | void clear_screen(void); | ||
| 41 | void clear_buffer(void); | ||
| 42 | void send_buffer(void); | ||
| 43 | void draw_pixel(uint8_t x, uint8_t y, uint8_t color, uint8_t mode); | ||
| 44 | void draw_line(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1, uint8_t color, uint8_t mode); | ||
| 45 | void draw_line_hori(uint8_t x, uint8_t y, uint8_t width, uint8_t color, uint8_t mode); | ||
| 46 | void draw_line_vert(uint8_t x, uint8_t y, uint8_t height, bool color, uint8_t mode); | ||
| 47 | void draw_rect(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t color, uint8_t mode); | ||
| 48 | void draw_rect_soft(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t color, uint8_t mode); | ||
| 49 | void draw_rect_filled(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t color, uint8_t mode); | ||
| 50 | void draw_rect_filled_soft(uint8_t x, uint8_t y, uint8_t width, uint8_t height, uint8_t color, uint8_t mode); | ||
| 51 | void draw_char(uint8_t x, uint8_t y, uint8_t c, uint8_t color, uint8_t mode, uint8_t font); | ||
| 52 | void draw_string(uint8_t x, uint8_t y, char* string, uint8_t color, uint8_t mode, uint8_t font); | ||
| 53 | |||
| 54 | #define I2C_ADDRESS_SA0_0 0b0111100 | ||
| 55 | #ifndef I2C_ADDRESS_SA0_1 | ||
| 56 | # define I2C_ADDRESS_SA0_1 0b0111101 | ||
| 57 | #endif | ||
| 58 | #define I2C_COMMAND 0x00 | ||
| 59 | #define I2C_DATA 0x40 | ||
| 60 | #define PIXEL_OFF 0 | ||
| 61 | #define PIXEL_ON 1 | ||
| 62 | |||
| 63 | #ifndef LCDWIDTH | ||
| 64 | # define LCDWIDTH 64 | ||
| 65 | #endif | ||
| 66 | #ifndef LCDHEIGHT | ||
| 67 | # define LCDHEIGHT 48 | ||
| 68 | #endif | ||
| 69 | #define FONTHEADERSIZE 6 | ||
| 70 | |||
| 71 | #define NORM 0 | ||
| 72 | #define XOR 1 | ||
| 73 | |||
| 74 | #define PAGE 0 | ||
| 75 | #define ALL 1 | ||
| 76 | |||
| 77 | #define WIDGETSTYLE0 0 | ||
| 78 | #define WIDGETSTYLE1 1 | ||
| 79 | #define WIDGETSTYLE2 2 | ||
| 80 | |||
| 81 | #define SETCONTRAST 0x81 | ||
| 82 | #define DISPLAYALLONRESUME 0xA4 | ||
| 83 | #define DISPLAYALLON 0xA5 | ||
| 84 | #define NORMALDISPLAY 0xA6 | ||
| 85 | #define INVERTDISPLAY 0xA7 | ||
| 86 | #define DISPLAYOFF 0xAE | ||
| 87 | #define DISPLAYON 0xAF | ||
| 88 | #define SETDISPLAYOFFSET 0xD3 | ||
| 89 | #define SETCOMPINS 0xDA | ||
| 90 | #define SETVCOMDESELECT 0xDB | ||
| 91 | #define SETDISPLAYCLOCKDIV 0xD5 | ||
| 92 | #define SETPRECHARGE 0xD9 | ||
| 93 | #define SETMULTIPLEX 0xA8 | ||
| 94 | #define SETLOWCOLUMN 0x00 | ||
| 95 | #define SETHIGHCOLUMN 0x10 | ||
| 96 | #define SETSTARTLINE 0x40 | ||
| 97 | #define MEMORYMODE 0x20 | ||
| 98 | #define COMSCANINC 0xC0 | ||
| 99 | #define COMSCANDEC 0xC8 | ||
| 100 | #define SEGREMAP 0xA0 | ||
| 101 | #define CHARGEPUMP 0x8D | ||
| 102 | #define EXTERNALVCC 0x01 | ||
| 103 | #define SWITCHCAPVCC 0x02 | ||
| 104 | |||
| 105 | // Scroll | ||
| 106 | #define ACTIVATESCROLL 0x2F | ||
| 107 | #define DEACTIVATESCROLL 0x2E | ||
| 108 | #define SETVERTICALSCROLLAREA 0xA3 | ||
| 109 | #define RIGHTHORIZONTALSCROLL 0x26 | ||
| 110 | #define LEFT_HORIZONTALSCROLL 0x27 | ||
| 111 | #define VERTICALRIGHTHORIZONTALSCROLL 0x29 | ||
| 112 | #define VERTICALLEFTHORIZONTALSCROLL 0x2A | ||
| 113 | |||
| 114 | typedef enum CMD { | ||
| 115 | CMD_CLEAR, // 0 | ||
| 116 | CMD_INVERT, // 1 | ||
| 117 | CMD_CONTRAST, // 2 | ||
| 118 | CMD_DISPLAY, // 3 | ||
| 119 | CMD_SETCURSOR, // 4 | ||
| 120 | CMD_PIXEL, // 5 | ||
| 121 | CMD_LINE, // 6 | ||
| 122 | CMD_LINEH, // 7 | ||
| 123 | CMD_LINEV, // 8 | ||
| 124 | CMD_RECT, // 9 | ||
| 125 | CMD_RECTFILL, // 10 | ||
| 126 | CMD_CIRCLE, // 11 | ||
| 127 | CMD_CIRCLEFILL, // 12 | ||
| 128 | CMD_DRAWCHAR, // 13 | ||
| 129 | CMD_DRAWBITMAP, // 14 | ||
| 130 | CMD_GETLCDWIDTH, // 15 | ||
| 131 | CMD_GETLCDHEIGHT, // 16 | ||
| 132 | CMD_SETCOLOR, // 17 | ||
| 133 | CMD_SETDRAWMODE // 18 | ||
| 134 | } commCommand_t; | ||
diff --git a/drivers/qwiic/qwiic.c b/drivers/qwiic/qwiic.c deleted file mode 100644 index 316d6539c..000000000 --- a/drivers/qwiic/qwiic.c +++ /dev/null | |||
| @@ -1,31 +0,0 @@ | |||
| 1 | /* Copyright 2018 Jack Humbert <jack.humb@gmail.com> | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include "qwiic.h" | ||
| 17 | |||
| 18 | void qwiic_init(void) { | ||
| 19 | #ifdef QWIIC_JOYSTIIC_ENABLE | ||
| 20 | joystiic_init(); | ||
| 21 | #endif | ||
| 22 | #ifdef QWIIC_MICRO_OLED_ENABLE | ||
| 23 | micro_oled_init(); | ||
| 24 | #endif | ||
| 25 | } | ||
| 26 | |||
| 27 | void qwiic_task(void) { | ||
| 28 | #ifdef QWIIC_JOYSTIIC_ENABLE | ||
| 29 | joystiic_task(); | ||
| 30 | #endif | ||
| 31 | } | ||
diff --git a/drivers/qwiic/qwiic.h b/drivers/qwiic/qwiic.h deleted file mode 100644 index 8c3d1c8d6..000000000 --- a/drivers/qwiic/qwiic.h +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | /* Copyright 2018 Jack Humbert <jack.humb@gmail.com> | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #include "i2c_master.h" | ||
| 19 | |||
| 20 | #ifdef QWIIC_JOYSTIIC_ENABLE | ||
| 21 | # include "joystiic.h" | ||
| 22 | #endif | ||
| 23 | #ifdef QWIIC_MICRO_OLED_ENABLE | ||
| 24 | # include "micro_oled.h" | ||
| 25 | #endif | ||
| 26 | |||
| 27 | void qwiic_init(void); | ||
| 28 | void qwiic_task(void); | ||
diff --git a/drivers/qwiic/qwiic.mk b/drivers/qwiic/qwiic.mk deleted file mode 100644 index 164bd7210..000000000 --- a/drivers/qwiic/qwiic.mk +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | ifeq ($(strip $(QWIIC_ENABLE)),yes) | ||
| 2 | COMMON_VPATH += $(DRIVER_PATH)/qwiic | ||
| 3 | OPT_DEFS += -DQWIIC_ENABLE | ||
| 4 | SRC += qwiic.c | ||
| 5 | QUANTUM_LIB_SRC += i2c_master.c | ||
| 6 | |||
| 7 | ifneq ($(filter JOYSTIIC, $(QWIIC_DRIVERS)),) | ||
| 8 | OPT_DEFS += -DQWIIC_JOYSTIIC_ENABLE | ||
| 9 | SRC += joystiic.c | ||
| 10 | endif | ||
| 11 | |||
| 12 | ifneq ($(filter MICRO_OLED, $(QWIIC_DRIVERS)),) | ||
| 13 | OPT_DEFS += -DQWIIC_MICRO_OLED_ENABLE | ||
| 14 | SRC += micro_oled.c | ||
| 15 | endif | ||
| 16 | |||
| 17 | endif | ||
diff --git a/drivers/qwiic/util/font5x7.h b/drivers/qwiic/util/font5x7.h deleted file mode 100644 index a641945aa..000000000 --- a/drivers/qwiic/util/font5x7.h +++ /dev/null | |||
| @@ -1,39 +0,0 @@ | |||
| 1 | /****************************************************************************** | ||
| 2 | font5x7.h | ||
| 3 | Definition for small font | ||
| 4 | |||
| 5 | This file was imported from the MicroView library, written by GeekAmmo | ||
| 6 | (https://github.com/geekammo/MicroView-Arduino-Library), and released under | ||
| 7 | the terms of the GNU General Public License as published by the Free Software | ||
| 8 | Foundation, either version 3 of the License, or (at your option) any later | ||
| 9 | version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 18 | |||
| 19 | Modified by: | ||
| 20 | Emil Varughese @ Edwin Robotics Pvt. Ltd. | ||
| 21 | July 27, 2015 | ||
| 22 | https://github.com/emil01/SparkFun_Micro_OLED_Arduino_Library/ | ||
| 23 | |||
| 24 | ******************************************************************************/ | ||
| 25 | #pragma once | ||
| 26 | |||
| 27 | #include "progmem.h" | ||
| 28 | |||
| 29 | // Standard ASCII 5x7 font | ||
| 30 | static const unsigned char font5x7[] PROGMEM = { | ||
| 31 | // first row defines - FONTWIDTH, FONTHEIGHT, ASCII START CHAR, TOTAL CHARACTERS, FONT MAP WIDTH HIGH, FONT MAP WIDTH LOW (2,56 meaning 256) | ||
| 32 | 5, 8, 0, 255, 12, 75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x5B, 0x4F, 0x5B, 0x3E, 0x3E, 0x6B, 0x4F, 0x6B, 0x3E, 0x1C, 0x3E, 0x7C, 0x3E, 0x1C, 0x18, 0x3C, 0x7E, 0x3C, 0x18, 0x1C, 0x57, 0x7D, 0x57, 0x1C, 0x1C, 0x5E, 0x7F, 0x5E, 0x1C, 0x00, 0x18, 0x3C, 0x18, 0x00, 0xFF, 0xE7, 0xC3, 0xE7, 0xFF, 0x00, 0x18, 0x24, 0x18, 0x00, 0xFF, 0xE7, 0xDB, 0xE7, 0xFF, 0x30, 0x48, 0x3A, 0x06, 0x0E, 0x26, 0x29, 0x79, 0x29, 0x26, 0x40, 0x7F, 0x05, 0x05, 0x07, 0x40, 0x7F, 0x05, 0x25, 0x3F, 0x5A, 0x3C, 0xE7, 0x3C, 0x5A, 0x7F, 0x3E, 0x1C, 0x1C, 0x08, 0x08, 0x1C, 0x1C, 0x3E, 0x7F, 0x14, 0x22, 0x7F, 0x22, 0x14, 0x5F, 0x5F, 0x00, 0x5F, 0x5F, 0x06, 0x09, 0x7F, 0x01, 0x7F, 0x00, 0x66, 0x89, 0x95, 0x6A, 0x60, 0x60, 0x60, 0x60, 0x60, 0x94, 0xA2, 0xFF, 0xA2, 0x94, 0x08, 0x04, 0x7E, 0x04, 0x08, 0x10, 0x20, 0x7E, 0x20, 0x10, 0x08, 0x08, 0x2A, 0x1C, 0x08, 0x08, 0x1C, 0x2A, 0x08, 0x08, 0x1E, 0x10, 0x10, 0x10, 0x10, 0x0C, 0x1E, 0x0C, 0x1E, 0x0C, 0x30, 0x38, 0x3E, 0x38, 0x30, | ||
| 33 | 0x06, 0x0E, 0x3E, 0x0E, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x00, 0x07, 0x00, 0x14, 0x7F, 0x14, 0x7F, 0x14, 0x24, 0x2A, 0x7F, 0x2A, 0x12, 0x23, 0x13, 0x08, 0x64, 0x62, 0x36, 0x49, 0x56, 0x20, 0x50, 0x00, 0x08, 0x07, 0x03, 0x00, 0x00, 0x1C, 0x22, 0x41, 0x00, 0x00, 0x41, 0x22, 0x1C, 0x00, 0x2A, 0x1C, 0x7F, 0x1C, 0x2A, 0x08, 0x08, 0x3E, 0x08, 0x08, 0x00, 0x80, 0x70, 0x30, 0x00, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00, 0x60, 0x60, 0x00, 0x20, 0x10, 0x08, 0x04, 0x02, 0x3E, 0x51, 0x49, 0x45, 0x3E, 0x00, 0x42, 0x7F, 0x40, 0x00, 0x72, 0x49, 0x49, 0x49, 0x46, 0x21, 0x41, 0x49, 0x4D, 0x33, 0x18, 0x14, 0x12, 0x7F, 0x10, 0x27, 0x45, 0x45, 0x45, 0x39, 0x3C, 0x4A, 0x49, 0x49, 0x31, 0x41, 0x21, 0x11, 0x09, 0x07, 0x36, 0x49, 0x49, 0x49, 0x36, 0x46, 0x49, 0x49, 0x29, 0x1E, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x40, 0x34, 0x00, 0x00, 0x00, 0x08, 0x14, 0x22, 0x41, 0x14, 0x14, 0x14, 0x14, 0x14, 0x00, 0x41, 0x22, 0x14, 0x08, 0x02, | ||
| 34 | 0x01, 0x59, 0x09, 0x06, 0x3E, 0x41, 0x5D, 0x59, 0x4E, 0x7C, 0x12, 0x11, 0x12, 0x7C, 0x7F, 0x49, 0x49, 0x49, 0x36, 0x3E, 0x41, 0x41, 0x41, 0x22, 0x7F, 0x41, 0x41, 0x41, 0x3E, 0x7F, 0x49, 0x49, 0x49, 0x41, 0x7F, 0x09, 0x09, 0x09, 0x01, 0x3E, 0x41, 0x41, 0x51, 0x73, 0x7F, 0x08, 0x08, 0x08, 0x7F, 0x00, 0x41, 0x7F, 0x41, 0x00, 0x20, 0x40, 0x41, 0x3F, 0x01, 0x7F, 0x08, 0x14, 0x22, 0x41, 0x7F, 0x40, 0x40, 0x40, 0x40, 0x7F, 0x02, 0x1C, 0x02, 0x7F, 0x7F, 0x04, 0x08, 0x10, 0x7F, 0x3E, 0x41, 0x41, 0x41, 0x3E, 0x7F, 0x09, 0x09, 0x09, 0x06, 0x3E, 0x41, 0x51, 0x21, 0x5E, 0x7F, 0x09, 0x19, 0x29, 0x46, 0x26, 0x49, 0x49, 0x49, 0x32, 0x03, 0x01, 0x7F, 0x01, 0x03, 0x3F, 0x40, 0x40, 0x40, 0x3F, 0x1F, 0x20, 0x40, 0x20, 0x1F, 0x3F, 0x40, 0x38, 0x40, 0x3F, 0x63, 0x14, 0x08, 0x14, 0x63, 0x03, 0x04, 0x78, 0x04, 0x03, 0x61, 0x59, 0x49, 0x4D, 0x43, 0x00, 0x7F, 0x41, 0x41, 0x41, 0x02, 0x04, 0x08, 0x10, 0x20, 0x00, 0x41, 0x41, 0x41, 0x7F, 0x04, 0x02, 0x01, 0x02, 0x04, 0x40, 0x40, | ||
| 35 | 0x40, 0x40, 0x40, 0x00, 0x03, 0x07, 0x08, 0x00, 0x20, 0x54, 0x54, 0x78, 0x40, 0x7F, 0x28, 0x44, 0x44, 0x38, 0x38, 0x44, 0x44, 0x44, 0x28, 0x38, 0x44, 0x44, 0x28, 0x7F, 0x38, 0x54, 0x54, 0x54, 0x18, 0x00, 0x08, 0x7E, 0x09, 0x02, 0x18, 0xA4, 0xA4, 0x9C, 0x78, 0x7F, 0x08, 0x04, 0x04, 0x78, 0x00, 0x44, 0x7D, 0x40, 0x00, 0x20, 0x40, 0x40, 0x3D, 0x00, 0x7F, 0x10, 0x28, 0x44, 0x00, 0x00, 0x41, 0x7F, 0x40, 0x00, 0x7C, 0x04, 0x78, 0x04, 0x78, 0x7C, 0x08, 0x04, 0x04, 0x78, 0x38, 0x44, 0x44, 0x44, 0x38, 0xFC, 0x18, 0x24, 0x24, 0x18, 0x18, 0x24, 0x24, 0x18, 0xFC, 0x7C, 0x08, 0x04, 0x04, 0x08, 0x48, 0x54, 0x54, 0x54, 0x24, 0x04, 0x04, 0x3F, 0x44, 0x24, 0x3C, 0x40, 0x40, 0x20, 0x7C, 0x1C, 0x20, 0x40, 0x20, 0x1C, 0x3C, 0x40, 0x30, 0x40, 0x3C, 0x44, 0x28, 0x10, 0x28, 0x44, 0x4C, 0x90, 0x90, 0x90, 0x7C, 0x44, 0x64, 0x54, 0x4C, 0x44, 0x00, 0x08, 0x36, 0x41, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x41, 0x36, 0x08, 0x00, 0x02, 0x01, 0x02, 0x04, 0x02, 0x3C, 0x26, 0x23, | ||
| 36 | 0x26, 0x3C, 0x1E, 0xA1, 0xA1, 0x61, 0x12, 0x3A, 0x40, 0x40, 0x20, 0x7A, 0x38, 0x54, 0x54, 0x55, 0x59, 0x21, 0x55, 0x55, 0x79, 0x41, 0x21, 0x54, 0x54, 0x78, 0x41, 0x21, 0x55, 0x54, 0x78, 0x40, 0x20, 0x54, 0x55, 0x79, 0x40, 0x0C, 0x1E, 0x52, 0x72, 0x12, 0x39, 0x55, 0x55, 0x55, 0x59, 0x39, 0x54, 0x54, 0x54, 0x59, 0x39, 0x55, 0x54, 0x54, 0x58, 0x00, 0x00, 0x45, 0x7C, 0x41, 0x00, 0x02, 0x45, 0x7D, 0x42, 0x00, 0x01, 0x45, 0x7C, 0x40, 0xF0, 0x29, 0x24, 0x29, 0xF0, 0xF0, 0x28, 0x25, 0x28, 0xF0, 0x7C, 0x54, 0x55, 0x45, 0x00, 0x20, 0x54, 0x54, 0x7C, 0x54, 0x7C, 0x0A, 0x09, 0x7F, 0x49, 0x32, 0x49, 0x49, 0x49, 0x32, 0x32, 0x48, 0x48, 0x48, 0x32, 0x32, 0x4A, 0x48, 0x48, 0x30, 0x3A, 0x41, 0x41, 0x21, 0x7A, 0x3A, 0x42, 0x40, 0x20, 0x78, 0x00, 0x9D, 0xA0, 0xA0, 0x7D, 0x39, 0x44, 0x44, 0x44, 0x39, 0x3D, 0x40, 0x40, 0x40, 0x3D, 0x3C, 0x24, 0xFF, 0x24, 0x24, 0x48, 0x7E, 0x49, 0x43, 0x66, 0x2B, 0x2F, 0xFC, 0x2F, 0x2B, 0xFF, 0x09, 0x29, 0xF6, 0x20, 0xC0, 0x88, 0x7E, 0x09, | ||
| 37 | 0x03, 0x20, 0x54, 0x54, 0x79, 0x41, 0x00, 0x00, 0x44, 0x7D, 0x41, 0x30, 0x48, 0x48, 0x4A, 0x32, 0x38, 0x40, 0x40, 0x22, 0x7A, 0x00, 0x7A, 0x0A, 0x0A, 0x72, 0x7D, 0x0D, 0x19, 0x31, 0x7D, 0x26, 0x29, 0x29, 0x2F, 0x28, 0x26, 0x29, 0x29, 0x29, 0x26, 0x30, 0x48, 0x4D, 0x40, 0x20, 0x38, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x38, 0x2F, 0x10, 0xC8, 0xAC, 0xBA, 0x2F, 0x10, 0x28, 0x34, 0xFA, 0x00, 0x00, 0x7B, 0x00, 0x00, 0x08, 0x14, 0x2A, 0x14, 0x22, 0x22, 0x14, 0x2A, 0x14, 0x08, 0xAA, 0x00, 0x55, 0x00, 0xAA, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x10, 0x10, 0x10, 0xFF, 0x00, 0x14, 0x14, 0x14, 0xFF, 0x00, 0x10, 0x10, 0xFF, 0x00, 0xFF, 0x10, 0x10, 0xF0, 0x10, 0xF0, 0x14, 0x14, 0x14, 0xFC, 0x00, 0x14, 0x14, 0xF7, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0xFF, 0x14, 0x14, 0xF4, 0x04, 0xFC, 0x14, 0x14, 0x17, 0x10, 0x1F, 0x10, 0x10, 0x1F, 0x10, 0x1F, 0x14, 0x14, 0x14, 0x1F, 0x00, 0x10, 0x10, 0x10, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x10, | ||
| 38 | 0x10, 0x10, 0x10, 0x1F, 0x10, 0x10, 0x10, 0x10, 0xF0, 0x10, 0x00, 0x00, 0x00, 0xFF, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xFF, 0x10, 0x00, 0x00, 0x00, 0xFF, 0x14, 0x00, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00, 0x1F, 0x10, 0x17, 0x00, 0x00, 0xFC, 0x04, 0xF4, 0x14, 0x14, 0x17, 0x10, 0x17, 0x14, 0x14, 0xF4, 0x04, 0xF4, 0x00, 0x00, 0xFF, 0x00, 0xF7, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0xF7, 0x00, 0xF7, 0x14, 0x14, 0x14, 0x17, 0x14, 0x10, 0x10, 0x1F, 0x10, 0x1F, 0x14, 0x14, 0x14, 0xF4, 0x14, 0x10, 0x10, 0xF0, 0x10, 0xF0, 0x00, 0x00, 0x1F, 0x10, 0x1F, 0x00, 0x00, 0x00, 0x1F, 0x14, 0x00, 0x00, 0x00, 0xFC, 0x14, 0x00, 0x00, 0xF0, 0x10, 0xF0, 0x10, 0x10, 0xFF, 0x10, 0xFF, 0x14, 0x14, 0x14, 0xFF, 0x14, 0x10, 0x10, 0x10, 0x1F, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x10, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x38, 0x44, 0x44, 0x38, 0x44, 0x7C, | ||
| 39 | 0x2A, 0x2A, 0x3E, 0x14, 0x7E, 0x02, 0x02, 0x06, 0x06, 0x02, 0x7E, 0x02, 0x7E, 0x02, 0x63, 0x55, 0x49, 0x41, 0x63, 0x38, 0x44, 0x44, 0x3C, 0x04, 0x40, 0x7E, 0x20, 0x1E, 0x20, 0x06, 0x02, 0x7E, 0x02, 0x02, 0x99, 0xA5, 0xE7, 0xA5, 0x99, 0x1C, 0x2A, 0x49, 0x2A, 0x1C, 0x4C, 0x72, 0x01, 0x72, 0x4C, 0x30, 0x4A, 0x4D, 0x4D, 0x30, 0x30, 0x48, 0x78, 0x48, 0x30, 0xBC, 0x62, 0x5A, 0x46, 0x3D, 0x3E, 0x49, 0x49, 0x49, 0x00, 0x7E, 0x01, 0x01, 0x01, 0x7E, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x44, 0x44, 0x5F, 0x44, 0x44, 0x40, 0x51, 0x4A, 0x44, 0x40, 0x40, 0x44, 0x4A, 0x51, 0x40, 0x00, 0x00, 0xFF, 0x01, 0x03, 0xE0, 0x80, 0xFF, 0x00, 0x00, 0x08, 0x08, 0x6B, 0x6B, 0x08, 0x36, 0x12, 0x36, 0x24, 0x36, 0x06, 0x0F, 0x09, 0x0F, 0x06, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x30, 0x40, 0xFF, 0x01, 0x01, 0x00, 0x1F, 0x01, 0x01, 0x1E, 0x00, 0x19, 0x1D, 0x17, 0x12, 0x00, 0x3C, 0x3C, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00}; | ||
diff --git a/drivers/qwiic/util/font8x16.h b/drivers/qwiic/util/font8x16.h deleted file mode 100644 index 4d3c23786..000000000 --- a/drivers/qwiic/util/font8x16.h +++ /dev/null | |||
| @@ -1,39 +0,0 @@ | |||
| 1 | /****************************************************************************** | ||
| 2 | font8x16.h | ||
| 3 | Definition for medium font | ||
| 4 | |||
| 5 | This file was imported from the MicroView library, written by GeekAmmo | ||
| 6 | (https://github.com/geekammo/MicroView-Arduino-Library), and released under | ||
| 7 | the terms of the GNU General Public License as published by the Free Software | ||
| 8 | Foundation, either version 3 of the License, or (at your option) any later | ||
| 9 | version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 18 | |||
| 19 | Modified by: | ||
| 20 | Emil Varughese @ Edwin Robotics Pvt. Ltd. | ||
| 21 | July 27, 2015 | ||
| 22 | https://github.com/emil01/SparkFun_Micro_OLED_Arduino_Library/ | ||
| 23 | ******************************************************************************/ | ||
| 24 | #pragma once | ||
| 25 | |||
| 26 | #include "progmem.h" | ||
| 27 | |||
| 28 | static const unsigned char font8x16[] PROGMEM = { | ||
| 29 | // first row defines - FONTWIDTH, FONTHEIGHT, ASCII START CHAR, TOTAL CHARACTERS, FONT MAP WIDTH HIGH, FONT MAP WIDTH LOW (2,56 meaning 256) | ||
| 30 | 8, 16, 32, 96, 2, 56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0xD0, 0xBE, 0x90, 0xD0, 0xBE, 0x90, 0x00, 0x00, 0x1C, 0x62, 0xFF, 0xC2, 0x80, 0x00, 0x00, 0x0C, 0x12, 0x92, 0x4C, 0xB0, 0x88, 0x06, 0x00, 0x80, 0x7C, 0x62, 0xB2, 0x1C, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x18, 0x04, 0x02, 0x02, 0x00, 0x00, 0x00, 0x02, 0x02, 0x04, 0x18, 0xE0, 0x00, 0x00, 0x00, 0x24, 0x18, 0x7E, 0x18, 0x24, 0x00, 0x00, 0x80, 0x80, 0x80, 0xF0, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x60, 0x18, 0x06, 0x00, 0x00, 0xF8, 0x04, 0xC2, 0x32, 0x0C, 0xF8, 0x00, 0x00, 0x00, 0x04, 0x04, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x82, 0x42, 0x22, | ||
| 31 | 0x1C, 0x00, 0x00, 0x00, 0x02, 0x22, 0x22, 0x22, 0xDC, 0x00, 0x00, 0xC0, 0xA0, 0x98, 0x84, 0xFE, 0x80, 0x80, 0x00, 0x00, 0x1E, 0x12, 0x12, 0x22, 0xC2, 0x00, 0x00, 0xF8, 0x44, 0x22, 0x22, 0x22, 0xC0, 0x00, 0x00, 0x00, 0x02, 0x02, 0xC2, 0x32, 0x0A, 0x06, 0x00, 0x00, 0x8C, 0x52, 0x22, 0x52, 0x8C, 0x00, 0x00, 0x3C, 0x42, 0x42, 0x42, 0x26, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x00, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x00, 0x00, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x80, 0x00, 0x00, 0x02, 0x82, 0x42, 0x22, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x0F, 0x04, 0x03, 0x00, 0x00, 0x04, 0x02, 0x01, 0x03, 0x04, 0x04, 0x03, 0x00, | ||
| 32 | 0x03, 0x04, 0x04, 0x04, 0x05, 0x03, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x06, 0x08, 0x10, 0x10, 0x00, 0x00, 0x00, 0x10, 0x10, 0x08, 0x06, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x04, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x04, 0x04, 0x07, 0x04, 0x04, 0x00, 0x00, 0x00, 0x07, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x01, 0x02, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x00, 0x04, 0x04, | ||
| 33 | 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x02, 0x02, 0x04, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x04, 0x02, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x04, 0x72, 0x8A, 0xFA, 0x84, 0x78, 0x00, 0x00, 0xC0, 0x38, 0x06, 0x38, 0xC0, 0x00, 0x00, 0x00, 0xFE, 0x22, 0x22, 0x22, 0xDC, 0x00, 0x00, 0xF8, 0x04, 0x02, 0x02, 0x02, 0x02, 0x00, 0x00, 0xFE, 0x02, 0x02, 0x02, 0x04, 0xF8, 0x00, 0x00, 0x00, 0xFE, 0x22, 0x22, 0x22, 0x22, 0x00, 0x00, 0x00, 0xFE, 0x22, 0x22, 0x22, 0x22, 0x00, 0x00, 0xF8, 0x04, 0x02, 0x02, 0x22, 0xE2, 0x00, 0x00, 0xFE, 0x20, 0x20, 0x20, 0x20, 0xFE, 0x00, 0x00, 0x00, 0x02, 0x02, 0xFE, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0xFE, 0x00, 0x00, 0xFE, 0x40, 0xB0, 0x08, 0x04, 0x02, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, | ||
| 34 | 0x00, 0x00, 0xFE, 0x0C, 0x70, 0x80, 0x70, 0x0C, 0xFE, 0x00, 0xFE, 0x0C, 0x30, 0xC0, 0x00, 0xFE, 0x00, 0x00, 0xF8, 0x04, 0x02, 0x02, 0x04, 0xF8, 0x00, 0x00, 0xFE, 0x42, 0x42, 0x42, 0x22, 0x1C, 0x00, 0x00, 0xF8, 0x04, 0x02, 0x02, 0x04, 0xF8, 0x00, 0x00, 0x00, 0xFE, 0x42, 0x42, 0xA2, 0x1C, 0x00, 0x00, 0x00, 0x1C, 0x22, 0x42, 0x42, 0x80, 0x00, 0x00, 0x02, 0x02, 0x02, 0xFE, 0x02, 0x02, 0x02, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x06, 0x38, 0xC0, 0x00, 0xC0, 0x38, 0x06, 0x00, 0x3E, 0xC0, 0xF0, 0x0E, 0xF0, 0xC0, 0x3E, 0x00, 0x00, 0x06, 0x98, 0x60, 0x98, 0x06, 0x00, 0x00, 0x00, 0x06, 0x18, 0xE0, 0x18, 0x06, 0x00, 0x00, 0x02, 0x02, 0xC2, 0x32, 0x0A, 0x06, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x02, 0x02, 0x02, 0x02, 0x00, 0x00, 0x06, 0x18, 0x60, 0x80, 0x00, 0x00, 0x00, 0x02, 0x02, 0x02, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x40, 0x30, 0x0C, 0x0C, 0x30, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, | ||
| 35 | 0x02, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x00, 0x00, 0x07, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x01, 0x02, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x07, 0x04, 0x04, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x07, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x04, 0x04, 0x07, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x04, 0x04, 0x07, 0x04, 0x04, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x01, 0x02, 0x04, 0x00, 0x00, 0x00, 0x07, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x00, 0x07, 0x00, 0x00, 0x00, 0x03, 0x07, 0x00, 0x00, 0x01, 0x02, 0x04, 0x04, 0x02, 0x01, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x0C, 0x12, 0x11, 0x10, 0x00, 0x00, 0x07, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, | ||
| 36 | 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x06, 0x01, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x06, 0x05, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x10, 0x10, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x00, 0x10, 0x10, 0x10, 0x10, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x10, 0x10, 0x10, 0xF0, 0x00, 0x00, 0x00, 0xFE, 0x20, 0x10, 0x10, 0xE0, 0x00, 0x00, 0x00, 0xE0, 0x10, 0x10, 0x10, 0x10, 0x00, 0x00, 0x00, 0xE0, 0x10, 0x10, 0x10, 0xFE, 0x00, 0x00, 0x00, 0xE0, 0x90, 0x90, 0x90, 0xE0, 0x00, 0x00, 0x00, 0x20, 0xFC, 0x22, 0x22, 0x22, 0x02, | ||
| 37 | 0x00, 0x00, 0xE0, 0x10, 0x10, 0x10, 0xF0, 0x00, 0x00, 0x00, 0xFE, 0x20, 0x10, 0x10, 0xE0, 0x00, 0x00, 0x10, 0x10, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x10, 0xF2, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x80, 0x40, 0x20, 0x10, 0x00, 0x00, 0x00, 0x02, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x20, 0x10, 0xF0, 0x20, 0x10, 0xF0, 0x00, 0x00, 0xF0, 0x20, 0x10, 0x10, 0xE0, 0x00, 0x00, 0x00, 0xE0, 0x10, 0x10, 0x10, 0xE0, 0x00, 0x00, 0x00, 0xF0, 0x20, 0x10, 0x10, 0xE0, 0x00, 0x00, 0x00, 0xE0, 0x10, 0x10, 0x10, 0xF0, 0x00, 0x00, 0x00, 0xF0, 0x20, 0x10, 0x10, 0x70, 0x00, 0x00, 0x00, 0x60, 0x90, 0x90, 0x90, 0x20, 0x00, 0x00, 0x00, 0x20, 0x20, 0xFC, 0x20, 0x20, 0x20, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x70, 0x80, 0x00, 0x80, 0x70, 0x00, 0x00, 0xF0, 0x00, 0xC0, 0x30, 0xC0, 0x00, 0xF0, 0x00, 0x00, 0x30, 0xC0, 0xC0, 0x30, 0x00, 0x00, 0x00, 0x00, 0x30, 0xC0, 0x00, 0x80, 0x70, 0x00, 0x00, 0x00, 0x10, | ||
| 38 | 0x10, 0x90, 0x50, 0x30, 0x00, 0x00, 0x00, 0x80, 0x80, 0x7E, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x7E, 0x80, 0x80, 0x00, 0x00, 0x00, 0x80, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x02, 0x07, 0x00, 0x00, 0x00, 0x07, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x02, 0x07, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x24, 0x24, 0x22, 0x1F, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x04, 0x00, 0x00, 0x00, 0x20, 0x20, 0x20, 0x20, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x01, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x04, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x07, 0x00, | ||
| 39 | 0x00, 0x07, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x00, 0x3F, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x02, 0x3F, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x04, 0x04, 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x04, 0x04, 0x00, 0x00, 0x03, 0x04, 0x04, 0x02, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x03, 0x00, 0x00, 0x00, 0x01, 0x06, 0x01, 0x00, 0x01, 0x06, 0x01, 0x00, 0x00, 0x06, 0x01, 0x01, 0x06, 0x00, 0x00, 0x00, 0x20, 0x20, 0x31, 0x0E, 0x03, 0x00, 0x00, 0x00, 0x00, 0x06, 0x05, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; | ||
diff --git a/lib/python/qmk/info.py b/lib/python/qmk/info.py index 1b4c42ff4..edbf5d7c8 100644 --- a/lib/python/qmk/info.py +++ b/lib/python/qmk/info.py | |||
| @@ -113,7 +113,7 @@ def _extract_features(info_data, rules): | |||
| 113 | rules['BOOTMAGIC_ENABLE'] = 'on' | 113 | rules['BOOTMAGIC_ENABLE'] = 'on' |
| 114 | 114 | ||
| 115 | # Skip non-boolean features we haven't implemented special handling for | 115 | # Skip non-boolean features we haven't implemented special handling for |
| 116 | for feature in 'HAPTIC_ENABLE', 'QWIIC_ENABLE': | 116 | for feature in ('HAPTIC_ENABLE',): |
| 117 | if rules.get(feature): | 117 | if rules.get(feature): |
| 118 | del rules[feature] | 118 | del rules[feature] |
| 119 | 119 | ||
diff --git a/quantum/keyboard.c b/quantum/keyboard.c index 401abdd8f..f2a0889c1 100644 --- a/quantum/keyboard.c +++ b/quantum/keyboard.c | |||
| @@ -73,9 +73,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 73 | #ifdef HD44780_ENABLE | 73 | #ifdef HD44780_ENABLE |
| 74 | # include "hd44780.h" | 74 | # include "hd44780.h" |
| 75 | #endif | 75 | #endif |
| 76 | #ifdef QWIIC_ENABLE | ||
| 77 | # include "qwiic.h" | ||
| 78 | #endif | ||
| 79 | #ifdef OLED_ENABLE | 76 | #ifdef OLED_ENABLE |
| 80 | # include "oled_driver.h" | 77 | # include "oled_driver.h" |
| 81 | #endif | 78 | #endif |
| @@ -304,9 +301,6 @@ void keyboard_init(void) { | |||
| 304 | #if defined(CRC_ENABLE) | 301 | #if defined(CRC_ENABLE) |
| 305 | crc_init(); | 302 | crc_init(); |
| 306 | #endif | 303 | #endif |
| 307 | #ifdef QWIIC_ENABLE | ||
| 308 | qwiic_init(); | ||
| 309 | #endif | ||
| 310 | #ifdef OLED_ENABLE | 304 | #ifdef OLED_ENABLE |
| 311 | oled_init(OLED_ROTATION_0); | 305 | oled_init(OLED_ROTATION_0); |
| 312 | #endif | 306 | #endif |
| @@ -457,10 +451,6 @@ MATRIX_LOOP_END: | |||
| 457 | if (encoders_changed) last_encoder_activity_trigger(); | 451 | if (encoders_changed) last_encoder_activity_trigger(); |
| 458 | #endif | 452 | #endif |
| 459 | 453 | ||
| 460 | #ifdef QWIIC_ENABLE | ||
| 461 | qwiic_task(); | ||
| 462 | #endif | ||
| 463 | |||
| 464 | #ifdef OLED_ENABLE | 454 | #ifdef OLED_ENABLE |
| 465 | oled_task(); | 455 | oled_task(); |
| 466 | # if OLED_TIMEOUT > 0 | 456 | # if OLED_TIMEOUT > 0 |
