Merge pull request #165 from kurtis-lew/troubleshooting
Troubleshooting - Revised Copy of PR 150
This commit is contained in:
commit
e796e7c3e6
6 changed files with 39 additions and 1 deletions
BIN
docs/docs/assets/troubleshooting/keymaps/errorscreen.png
Normal file
BIN
docs/docs/assets/troubleshooting/keymaps/errorscreen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 182 KiB |
BIN
docs/docs/assets/troubleshooting/keymaps/healthyEDIT.png
Normal file
BIN
docs/docs/assets/troubleshooting/keymaps/healthyEDIT.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 184 KiB |
BIN
docs/docs/assets/troubleshooting/keymaps/unhealthyEDIT.png
Normal file
BIN
docs/docs/assets/troubleshooting/keymaps/unhealthyEDIT.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 183 KiB |
|
@ -27,6 +27,11 @@ There is an [open issue](https://github.com/zmkfirmware/zmk/issues/21) to provid
|
|||
complete set of defines for the full keypad and consumer usage pages in the future for ZMK.
|
||||
:::
|
||||
|
||||
### Improperly defined keymap - `dtlib.DTError: <board>.dts.pre.tmp:<line number>`
|
||||
|
||||
When compiling firmware from a keymap, it may be common to encounter an error in the form of a`dtlib.DTError: <board>.dts.pre.tmp:<line number>`.
|
||||
For instructions to resolve such an error, click [here](../troubleshooting###Improperly-defined-keymap)
|
||||
|
||||
## Keypad Key Press
|
||||
|
||||
The "keypad key press" behavior sends standard keypad keycodes on press/release.
|
||||
|
|
32
docs/docs/troubleshooting.md
Normal file
32
docs/docs/troubleshooting.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
id: troubleshooting
|
||||
title: Troubleshooting
|
||||
sidebar_title: Troubleshooting
|
||||
---
|
||||
### Summary
|
||||
|
||||
The following page provides suggestions for common errors that may occur during firmware compilation. If the information provided is insufficient to resolve the issue, feel free to seek out help from the [ZMK Discord](https://zmkfirmware.dev/community/discord/invite).
|
||||
|
||||
### CMake Error
|
||||
|
||||
An error along the lines of `CMake Error at (zmk directory)/zephyr/cmake/generic_toolchain.cmake:64 (include): include could not find load file:` during firmware compilation indicates that the Zephyr Environment Variables are not properly defined.
|
||||
For more information, click [here](../docs/dev-setup#environment-variables).
|
||||
|
||||
### dtlib.DTError
|
||||
|
||||
An error along the lines of `dtlib.DTError: <board>.dts.pre.tmp:<line number>` during firmware compilation indicates an issue within the `<shield>.keymap` file.
|
||||
This can be verified by checking the file in question, found in `mkdir/app/build`.
|
||||
|
||||
| ![Example Error Screen](../docs/assets/troubleshooting/keymaps/errorscreen.png) |
|
||||
| :-------------------------------------------------------------------------------: |
|
||||
| An example of the dtlib.DTError when compiling an iris with the nice!nano while the keymap is not properly defined |
|
||||
|
||||
After opening the `<board>.dts.pre.tmp:<line number>` and scrolling down to the referenced line, one can locate errors within their shield's keymap by checking if the referenced keycodes were properly converted into the correct [USB HID Usage ID](https://www.usb.org/document-library/hid-usage-tables-12).
|
||||
|
||||
| ![Unhealthy Keymap Temp](../docs/assets/troubleshooting/keymaps/unhealthyEDIT.png) |
|
||||
| :-------------------------------------------------------------------------------: |
|
||||
| An incorrectly defined keymap unable to compile. As shown in red, `&kp SPAC` is not a valid reference to the [USB HID Usage ID](https://www.usb.org/document-library/hid-usage-tables-12) used for "Keyboard Spacebar" |
|
||||
|
||||
| ![Healthy Keymap Temp](../docs/assets/troubleshooting/keymaps/healthyEDIT.png) |
|
||||
| :-------------------------------------------------------------------------------: |
|
||||
| A properly defined keymap with successful compilation. As shown in red, the corrected keycode (`&kp SPC`) references the proper Usage ID defined in the [USB HID Usage Tables](https://www.usb.org/document-library/hid-usage-tables-12)|
|
|
@ -7,6 +7,7 @@ module.exports = {
|
|||
"user-setup",
|
||||
"customization",
|
||||
"bond-reset",
|
||||
"troubleshooting"
|
||||
],
|
||||
Features: [
|
||||
"feature/keymaps",
|
||||
|
|
Loading…
Reference in a new issue