diff options
author | Ryan Caltabiano <rcalt2vt@gmail.com> | 2019-04-17 01:36:55 +0200 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-04-20 17:05:10 +0200 |
commit | dd3a813f871b911012da55a499955307c309a7a5 (patch) | |
tree | 80df58d039a9b20283057809925a2351121135d5 /keyboards/sol | |
parent | 0a645225b9c863a106921185a6c2e0c340f10694 (diff) | |
download | qmk_firmware-dd3a813f871b911012da55a499955307c309a7a5.tar.gz qmk_firmware-dd3a813f871b911012da55a499955307c309a7a5.tar.xz |
Reducing size of data send in one frame & update Zen rev2 oled usage
Diffstat (limited to 'keyboards/sol')
-rwxr-xr-x | keyboards/sol/keymaps/brianweyer/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/sol/keymaps/danielhklein/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/sol/keymaps/default/keymap.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/sol/keymaps/brianweyer/keymap.c b/keyboards/sol/keymaps/brianweyer/keymap.c index 9fd6ad615..87d603d81 100755 --- a/keyboards/sol/keymaps/brianweyer/keymap.c +++ b/keyboards/sol/keymaps/brianweyer/keymap.c @@ -181,7 +181,7 @@ void matrix_init_user(void) { // OLED Driver Logic #ifdef OLED_DRIVER_ENABLE -uint8_t oled_init_user(uint8_t rotation) { +oled_rotation_t oled_init_user(oled_rotation_t rotation) { if (!has_usb()) return OLED_ROTATION_180; // flip 180 for offhand return rotation; diff --git a/keyboards/sol/keymaps/danielhklein/keymap.c b/keyboards/sol/keymaps/danielhklein/keymap.c index cfc295323..9bcc5761a 100644 --- a/keyboards/sol/keymaps/danielhklein/keymap.c +++ b/keyboards/sol/keymaps/danielhklein/keymap.c @@ -246,7 +246,7 @@ void matrix_init_user(void) { // OLED Driver Logic #ifdef OLED_DRIVER_ENABLE -uint8_t oled_init_user(uint8_t rotation) { +oled_rotation_t oled_init_user(oled_rotation_t rotation) { if (!has_usb()) return OLED_ROTATION_180; // flip 180 for offhand return rotation; diff --git a/keyboards/sol/keymaps/default/keymap.c b/keyboards/sol/keymaps/default/keymap.c index 1742fc597..a40bc40b7 100644 --- a/keyboards/sol/keymaps/default/keymap.c +++ b/keyboards/sol/keymaps/default/keymap.c @@ -254,7 +254,7 @@ void matrix_init_user(void) { // OLED Driver Logic #ifdef OLED_DRIVER_ENABLE -uint8_t oled_init_user(uint8_t rotation) { +oled_rotation_t oled_init_user(oled_rotation_t rotation) { if (!has_usb()) return OLED_ROTATION_180; // flip 180 for offhand return rotation; |