aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/quantum.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2019-11-02 21:20:03 +0000
committerGitHub <noreply@github.com>2019-11-02 21:20:03 +0000
commit4531cc874e1bb8602fede9dc038b692673521590 (patch)
tree8e0ca8571a0de21513e00829e638f998387af1b7 /quantum/quantum.h
parentff8d43694659b36ea5215a4183d43f58fc7f01e9 (diff)
downloadfirmware-4531cc874e1bb8602fede9dc038b692673521590.tar.gz
firmware-4531cc874e1bb8602fede9dc038b692673521590.tar.bz2
firmware-4531cc874e1bb8602fede9dc038b692673521590.zip
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index f5ac97379..01abe1c0a 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -257,8 +257,8 @@ void tap_code16(uint16_t code);
void backlight_init_ports(void);
void backlight_task(void);
void backlight_task_internal(void);
-void backlight_on(uint8_t backlight_pin);
-void backlight_off(uint8_t backlight_pin);
+void backlight_on(pin_t backlight_pin);
+void backlight_off(pin_t backlight_pin);
# ifdef BACKLIGHT_BREATHING
void breathing_task(void);