diff options
author | Adam YH Lee <adam.yh.lee@gmail.com> | 2017-04-16 15:20:31 -0700 |
---|---|---|
committer | Adam YH Lee <adam.yh.lee@gmail.com> | 2017-04-16 15:20:31 -0700 |
commit | 9d4050586d24cdfbe5257c094fbb6c1be51f176f (patch) | |
tree | 8cf123260835331d75d02c5b15d0fb39ceba3256 /quantum/process_keycode/process_printer_bb.c | |
parent | 7e930626eb5f69d6a4de0594c6f5930334d801f8 (diff) | |
parent | b5e8327755100252060afbd54e16322522b4f1e9 (diff) | |
download | firmware-9d4050586d24cdfbe5257c094fbb6c1be51f176f.tar.gz firmware-9d4050586d24cdfbe5257c094fbb6c1be51f176f.tar.bz2 firmware-9d4050586d24cdfbe5257c094fbb6c1be51f176f.zip |
Merge branch 'master' into layouts/adam-lee
Diffstat (limited to 'quantum/process_keycode/process_printer_bb.c')
-rw-r--r-- | quantum/process_keycode/process_printer_bb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/process_keycode/process_printer_bb.c b/quantum/process_keycode/process_printer_bb.c index 55d3b552b..3a00f169d 100644 --- a/quantum/process_keycode/process_printer_bb.c +++ b/quantum/process_keycode/process_printer_bb.c @@ -46,7 +46,7 @@ void serial_output(void) { } -void enabled_printing() { +void enable_printing() { printing_enabled = true; serial_output(); serial_high(); @@ -82,7 +82,7 @@ void print_string(char c[]) { bool process_printer(uint16_t keycode, keyrecord_t *record) { if (keycode == PRINT_ON) { - enabled_printing(); + enable_printing(); return false; } if (keycode == PRINT_OFF) { |