summaryrefslogtreecommitdiff
path: root/docs/faq_misc.md
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-01-30 11:01:46 +0000
committerQMK Bot <hello@qmk.fm>2021-01-30 11:01:46 +0000
commita0e733391532490a216da044efb40451f67774f2 (patch)
tree8cc6bd43d0b70283b90cfadee1f512ef1161ff4c /docs/faq_misc.md
parent6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0 (diff)
parent92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/faq_misc.md')
-rw-r--r--docs/faq_misc.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/faq_misc.md b/docs/faq_misc.md
index ac7dd88d06..9ab2b69a80 100644
--- a/docs/faq_misc.md
+++ b/docs/faq_misc.md
@@ -57,8 +57,8 @@ https://github.com/tmk/tmk_keyboard#boot-magic-configuration---virtual-dip-switc
## TrackPoint Needs Reset Circuit (PS/2 Mouse Support)
Without reset circuit you will have inconsistent result due to improper initialization of the hardware. See circuit schematic of TPM754:
-- http://geekhack.org/index.php?topic=50176.msg1127447#msg1127447
-- http://www.mikrocontroller.net/attachment/52583/tpm754.pdf
+- https://geekhack.org/index.php?topic=50176.msg1127447#msg1127447
+- https://www.mikrocontroller.net/attachment/52583/tpm754.pdf
## Can't Read Column of Matrix Beyond 16
@@ -66,7 +66,7 @@ Use `1UL<<16` instead of `1<<16` in `read_cols()` in [matrix.h] when your column
In C `1` means one of [int] type which is [16 bit] in case of AVR, so you can't shift left more than 15. Thus, calculating `1<<16` will unexpectedly equal zero. To work around this, you have to use [unsigned long] type with `1UL`.
-http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279
+https://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279
## Special Extra Key Doesn't Work (System, Audio Control Keys)
You need to define `EXTRAKEY_ENABLE` in `rules.mk` to use them in QMK.
@@ -83,8 +83,8 @@ In Windows check `Allow this device to wake the computer` setting in **Power Man
**Note that Arduino pin naming is different from actual chip.** For example, Arduino pin `D0` is not `PD0`. Check circuit with its schematics yourself.
-- http://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf
-- http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf
+- https://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf
+- https://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf
Arduino Leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem.