aboutsummaryrefslogtreecommitdiff
path: root/drivers/oled/oled_driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/oled/oled_driver.h')
-rw-r--r--drivers/oled/oled_driver.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/oled/oled_driver.h b/drivers/oled/oled_driver.h
index 13b73ede9..3b56d370d 100644
--- a/drivers/oled/oled_driver.h
+++ b/drivers/oled/oled_driver.h
@@ -190,6 +190,7 @@ bool oled_init(oled_rotation_t rotation);
190// Called at the start of oled_init, weak function overridable by the user 190// Called at the start of oled_init, weak function overridable by the user
191// rotation - the value passed into oled_init 191// rotation - the value passed into oled_init
192// Return new oled_rotation_t if you want to override default rotation 192// Return new oled_rotation_t if you want to override default rotation
193oled_rotation_t oled_init_kb(oled_rotation_t rotation);
193oled_rotation_t oled_init_user(oled_rotation_t rotation); 194oled_rotation_t oled_init_user(oled_rotation_t rotation);
194 195
195// Clears the display buffer, resets cursor position to 0, and sets the buffer to dirty for rendering 196// Clears the display buffer, resets cursor position to 0, and sets the buffer to dirty for rendering
@@ -285,7 +286,8 @@ uint8_t oled_get_brightness(void);
285void oled_task(void); 286void oled_task(void);
286 287
287// Called at the start of oled_task, weak function overridable by the user 288// Called at the start of oled_task, weak function overridable by the user
288void oled_task_user(void); 289bool oled_task_kb(void);
290bool oled_task_user(void);
289 291
290// Set the specific 8 lines rows of the screen to scroll. 292// Set the specific 8 lines rows of the screen to scroll.
291// 0 is the default for start, and 7 for end, which is the entire 293// 0 is the default for start, and 7 for end, which is the entire