diff options
author | Ryan <fauxpark@gmail.com> | 2021-01-30 22:00:56 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-30 22:00:56 +1100 |
commit | 92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d (patch) | |
tree | 6b9861b866e761c375b19f469e29a6fbc4690c2b /docs/faq_misc.md | |
parent | 4c4b4b6e0d236637d4803b09f1ec9333aa532389 (diff) | |
download | qmk_firmware-92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d.tar.gz qmk_firmware-92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d.zip |
[Docs] Use HTTPS for images and links where possible (#11695)
Diffstat (limited to 'docs/faq_misc.md')
-rw-r--r-- | docs/faq_misc.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/faq_misc.md b/docs/faq_misc.md index ac7dd88d0..9ab2b69a8 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 | |||
57 | ## TrackPoint Needs Reset Circuit (PS/2 Mouse Support) | 57 | ## TrackPoint Needs Reset Circuit (PS/2 Mouse Support) |
58 | Without reset circuit you will have inconsistent result due to improper initialization of the hardware. See circuit schematic of TPM754: | 58 | Without reset circuit you will have inconsistent result due to improper initialization of the hardware. See circuit schematic of TPM754: |
59 | 59 | ||
60 | - http://geekhack.org/index.php?topic=50176.msg1127447#msg1127447 | 60 | - https://geekhack.org/index.php?topic=50176.msg1127447#msg1127447 |
61 | - http://www.mikrocontroller.net/attachment/52583/tpm754.pdf | 61 | - https://www.mikrocontroller.net/attachment/52583/tpm754.pdf |
62 | 62 | ||
63 | 63 | ||
64 | ## Can't Read Column of Matrix Beyond 16 | 64 | ## 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 | |||
66 | 66 | ||
67 | 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`. | 67 | 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`. |
68 | 68 | ||
69 | http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279 | 69 | https://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279 |
70 | 70 | ||
71 | ## Special Extra Key Doesn't Work (System, Audio Control Keys) | 71 | ## Special Extra Key Doesn't Work (System, Audio Control Keys) |
72 | You need to define `EXTRAKEY_ENABLE` in `rules.mk` to use them in QMK. | 72 | 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 | |||
83 | 83 | ||
84 | **Note that Arduino pin naming is different from actual chip.** For example, Arduino pin `D0` is not `PD0`. Check circuit with its schematics yourself. | 84 | **Note that Arduino pin naming is different from actual chip.** For example, Arduino pin `D0` is not `PD0`. Check circuit with its schematics yourself. |
85 | 85 | ||
86 | - http://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf | 86 | - https://arduino.cc/en/uploads/Main/arduino-leonardo-schematic_3b.pdf |
87 | - http://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf | 87 | - https://arduino.cc/en/uploads/Main/arduino-micro-schematic.pdf |
88 | 88 | ||
89 | Arduino Leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem. | 89 | Arduino Leonardo and micro have **ATMega32U4** and can be used for TMK, though Arduino bootloader may be a problem. |
90 | 90 | ||