summaryrefslogtreecommitdiffstats
path: root/docs/faq_misc.md
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-01-30 22:00:56 +1100
committerGitHub <noreply@github.com>2021-01-30 22:00:56 +1100
commit92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d (patch)
tree6b9861b866e761c375b19f469e29a6fbc4690c2b /docs/faq_misc.md
parent4c4b4b6e0d236637d4803b09f1ec9333aa532389 (diff)
[Docs] Use HTTPS for images and links where possible (#11695)
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.