aboutsummaryrefslogtreecommitdiff
path: root/docs/getting_started_make_guide.md
diff options
context:
space:
mode:
authorJames Churchill <pelrun@gmail.com>2019-03-05 01:44:46 +1000
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-03-04 07:44:46 -0800
commitc7c4937eef9cb34b73e765390b842282ad9f0544 (patch)
tree2e2582abe4273e3acf7125e0b8a09eb04ab04730 /docs/getting_started_make_guide.md
parentcdfcbfc92dba8198847e26056d8135a5feb0b5ec (diff)
downloadqmk_firmware-c7c4937eef9cb34b73e765390b842282ad9f0544.tar.gz
qmk_firmware-c7c4937eef9cb34b73e765390b842282ad9f0544.zip
Clean up debounce a bit (#5255)
Diffstat (limited to 'docs/getting_started_make_guide.md')
-rw-r--r--docs/getting_started_make_guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/getting_started_make_guide.md b/docs/getting_started_make_guide.md
index bb7e1e7e3..75eafd42c 100644
--- a/docs/getting_started_make_guide.md
+++ b/docs/getting_started_make_guide.md
@@ -143,9 +143,9 @@ As there is no standard split communication driver for ARM-based split keyboards
143 143
144Lets you replace the default matrix scanning routine with your own code. You will need to provide your own implementations of matrix_init() and matrix_scan(). 144Lets you replace the default matrix scanning routine with your own code. You will need to provide your own implementations of matrix_init() and matrix_scan().
145 145
146`CUSTOM_DEBOUNCE` 146`DEBOUNCE_TYPE`
147 147
148Lets you replace the default key debouncing routine with your own code. You will need to provide your own implementation of debounce(). 148Lets you replace the default key debouncing routine with an alternative one. If `custom` you will need to provide your own implementation.
149 149
150## Customizing Makefile Options on a Per-Keymap Basis 150## Customizing Makefile Options on a Per-Keymap Basis
151 151