summaryrefslogtreecommitdiff
path: root/quantum/backlight/backlight_driver_common.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-03-07 12:09:49 +0000
committerFlorian Didron <fdidron@users.noreply.github.com>2020-06-12 17:00:27 +0900
commitcd1ba27a7b5d2021b8b906ebffd99a269d4b2688 (patch)
treebf0ed0c3f58c4ebd36a1c5a861cf6db3ad5fe582 /quantum/backlight/backlight_driver_common.h
parent0f8a5d1d3891ef8dfe74e57b0bdf9af280b8c893 (diff)
Backlight - Carve out a better location for private driver functionality (#8329)
* rename backlight_soft to match rules.mk * rename backlight_soft to match rules.mk - update common_features * Carve out a better location for private driver backlight functionality
Diffstat (limited to 'quantum/backlight/backlight_driver_common.h')
-rw-r--r--quantum/backlight/backlight_driver_common.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/quantum/backlight/backlight_driver_common.h b/quantum/backlight/backlight_driver_common.h
new file mode 100644
index 0000000000..36e8a5fa6b
--- /dev/null
+++ b/quantum/backlight/backlight_driver_common.h
@@ -0,0 +1,7 @@
+#pragma once
+
+void backlight_pins_init(void);
+void backlight_pins_on(void);
+void backlight_pins_off(void);
+
+void breathing_task(void);