summaryrefslogtreecommitdiff
path: root/quantum/quantum.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2019-11-02 21:20:03 +0000
committerFlorian Didron <fdidron@users.noreply.github.com>2020-01-09 08:57:11 +0900
commit2c0173f0ff0177db415c9dab6fe4eeaefe4b0ab6 (patch)
treeb5a7f545edcc93c88623784f3df8c5e1db6a8a71 /quantum/quantum.h
parentbac9fc60fe5a969c87bf288a2896b1941458eebf (diff)
Initial migration of software PWM backlight (#6709)
* Initial migration of software PWM backlight * First pass at backlight driver docs * Correct driver name in docs * Run backlight_task when using BACKLIGHT_PINS * Resolve backlight docs TODOs
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index 759f7712c2..01abe1c0a1 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -256,6 +256,9 @@ void tap_code16(uint16_t code);
#ifdef BACKLIGHT_ENABLE
void backlight_init_ports(void);
void backlight_task(void);
+void backlight_task_internal(void);
+void backlight_on(pin_t backlight_pin);
+void backlight_off(pin_t backlight_pin);
# ifdef BACKLIGHT_BREATHING
void breathing_task(void);