summaryrefslogtreecommitdiff
path: root/quantum/backlight/backlight.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-03-06 12:49:45 +0000
committerFlorian Didron <fdidron@users.noreply.github.com>2020-06-12 17:00:27 +0900
commitc90f03da99ce7ec515ca305d07239d9ccc6c2f47 (patch)
tree717aec3dcb68649aec724e7377a4fda3008957c6 /quantum/backlight/backlight.h
parent2aa0d5f3d1d34f7018a28087e154688fba7eed90 (diff)
Refactor more backlight to a common location (#8292)
* Refactor more backlight to a common location * BACKLIGHT_PIN not defined for custom backlight * align function names
Diffstat (limited to 'quantum/backlight/backlight.h')
-rw-r--r--quantum/backlight/backlight.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/backlight/backlight.h b/quantum/backlight/backlight.h
index 08acf942ff..07a4880e9f 100644
--- a/quantum/backlight/backlight.h
+++ b/quantum/backlight/backlight.h
@@ -26,6 +26,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# error "Maximum value of BACKLIGHT_LEVELS is 31"
#endif
+#ifndef BACKLIGHT_ON_STATE
+# define BACKLIGHT_ON_STATE 1
+#endif
+
#ifndef BREATHING_PERIOD
# define BREATHING_PERIOD 6
#endif
@@ -40,6 +44,10 @@ typedef union {
};
} backlight_config_t;
+void backlight_pins_init(void);
+void backlight_pins_on(void);
+void backlight_pins_off(void);
+
void backlight_init(void);
void backlight_toggle(void);
void backlight_enable(void);