aboutsummaryrefslogtreecommitdiff
path: root/docs/getting_started_introduction.md
diff options
context:
space:
mode:
authorElliot Powell <32494740+e11i0t23@users.noreply.github.com>2019-05-31 22:44:27 +0100
committerDrashna Jaelre <drashna@live.com>2019-05-31 14:44:27 -0700
commitd3317a8a66e1a94de0dd795f5c9efe260e674475 (patch)
treeb706ca7e39fe4e18123aa1142ba446ccecf3c890 /docs/getting_started_introduction.md
parentf9c0936cea630e078618bfd8ef3b686dacce2e76 (diff)
downloadqmk_firmware-d3317a8a66e1a94de0dd795f5c9efe260e674475.tar.gz
qmk_firmware-d3317a8a66e1a94de0dd795f5c9efe260e674475.zip
[Docs] Update getting_started_introduction.md (#6037)
* Update getting_started_introduction.md * Update docs/getting_started_introduction.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/getting_started_introduction.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/getting_started_introduction.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/getting_started_introduction.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'docs/getting_started_introduction.md')
-rw-r--r--docs/getting_started_introduction.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/getting_started_introduction.md b/docs/getting_started_introduction.md
index 3b6a488ed..e183d77ee 100644
--- a/docs/getting_started_introduction.md
+++ b/docs/getting_started_introduction.md
@@ -12,11 +12,17 @@ Within the folder `users` is a directory for each user. This is a place for user
12 12
13### Keyboard Project Structure 13### Keyboard Project Structure
14 14
15Within the folder `keyboards` and its subfolder `handwired` is a directory for each keyboard project, for example `qmk_firmware/keyboards/clueboard`. Within it you'll find the following structure: 15Within the folder `keyboards`, its subfolder `handwired` and its vendor and manufacture subdirectories e.g. `clueboard` is a directory for each keyboard project, for example `qmk_firmware/keyboards/clueboard/2x1800`. Within it, you'll find the following structure:
16 16
17* `keymaps/`: Different keymaps that can be built 17* `keymaps/`: Different keymaps that can be built
18* `rules.mk`: The file that sets the default "make" options. Do not edit this file directly, instead use a keymap specific `rules.mk`. 18* `rules.mk`: The file that sets the default "make" options. Do not edit this file directly, instead use a keymap specific `rules.mk`.
19* `config.h`: The file that sets the default compile time options. Do not edit this file directly, instead use a keymap specific `config.h`. 19* `config.h`: The file that sets the default compile time options. Do not edit this file directly, instead use a keymap specific `config.h`.
20* `info.json`: The file used for setting layout for QMK Configurator. See [Configurator Support](reference_configurator_support.md) for more information.
21* `readme.md`: A brief overview of the keyboard.
22* `<keyboardName>.h`: This file is where the keyboard layout is defined against the keyboard's switch matrix.
23* `<keyboardName>.c`: This file is where you can find custom code for the keyboard.
24
25For more information on project structure, see [QMK Keyboard Guidelines](hardware_keyboard_guidelines.md).
20 26
21### Keymap Structure 27### Keymap Structure
22 28