aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/build_guide.md103
-rw-r--r--docs/build_old.md187
-rw-r--r--docs/cygwin_guide.md352
-rw-r--r--docs/embedding.md64
-rw-r--r--docs/git_subtree.md7
-rw-r--r--docs/hhkb_alt_controller.md5
-rw-r--r--docs/keymap_config_h_example.h8
-rw-r--r--docs/keymap_examples.md37
-rw-r--r--docs/keymap_makefile_example.mk21
-rw-r--r--docs/keymap_old.md685
-rw-r--r--docs/kiibohd.asciidoc29
-rw-r--r--docs/license_clarification.md38
-rw-r--r--docs/license_clarification_details.md1272
-rw-r--r--docs/mbed_cortex_porting.md36
-rw-r--r--docs/memory_write_error,_use_debug_for_more_info.md21
-rw-r--r--docs/other_projects.md62
-rw-r--r--docs/pcb_guide.md151
-rw-r--r--docs/previously_asked_questions.asciidoc14
-rw-r--r--docs/report_descriptor.md1
-rw-r--r--docs/test_for_asciidoc.asciidoc17
-rw-r--r--docs/tmk_based_projects.md34
-rw-r--r--docs/tmk_own_projects.md69
-rw-r--r--docs/tmk_readme.md243
-rw-r--r--docs/usb_hid.md11
24 files changed, 0 insertions, 3467 deletions
diff --git a/docs/build_guide.md b/docs/build_guide.md
deleted file mode 100644
index 8573b0fd1..000000000
--- a/docs/build_guide.md
+++ /dev/null
@@ -1,103 +0,0 @@
1# This guide has now been included in the main readme - please reference that one instead.
2
3## Build Environment Setup
4
5### Windows (Vista and later)
61. If you have ever installed WinAVR, uninstall it.
72. Install [MHV AVR Tools](https://infernoembedded.com/sites/default/files/project/MHV_AVR_Tools_20131101.exe). Disable smatch, but **be sure to leave the option to add the tools to the PATH checked**.
83. Install [MinGW](https://sourceforge.net/projects/mingw/files/Installer/mingw-get-setup.exe/download). During installation, uncheck the option to install a graphical user interface. **DO NOT change the default installation folder.** The scripts depend on the default location.
94. Clone this repository. [This link will download it as a zip file, which you'll need to extract.](https://github.com/qmk/qmk_firmware/archive/master.zip) Open the extracted folder in Windows Explorer.
105. Double-click on the 1-setup-path-win batch script to run it. You'll need to accept a User Account Control prompt. Press the spacebar to dismiss the success message in the command prompt that pops up.
116. Right-click on the 2-setup-environment-win batch script, select "Run as administrator", and accept the User Account Control prompt. This part may take a couple of minutes, and you'll need to approve a driver installation, but once it finishes, your environment is complete!
127. Future build commands should be run from the standard Windows command prompt, which you can find by searching for "command prompt" from the start menu or start screen. Ignore the "MHV AVR Shell".
13
14### Mac
15If you're using [homebrew,](http://brew.sh/) you can use the following commands:
16
17 brew tap osx-cross/avr
18 brew install avr-libc
19 brew install dfu-programmer
20
21This is the recommended method. If you don't have homebrew, [install it!](http://brew.sh/) It's very much worth it for anyone who works in the command line.
22
23You can also try these instructions:
24
251. Install Xcode from the App Store.
262. Install the Command Line Tools from `Xcode->Preferences->Downloads`.
273. Install [DFU-Programmer][dfu-prog].
28
29### Linux
30Install AVR GCC, AVR libc, and dfu-progammer with your favorite package manager.
31
32Debian/Ubuntu example:
33
34 sudo apt-get update
35 sudo apt-get install gcc-avr avr-libc dfu-programmer
36
37### Vagrant
38If you have any problems building the firmware, you can try using a tool called Vagrant. It will set up a virtual computer with a known configuration that's ready-to-go for firmware building. OLKB does NOT host the files for this virtual computer. Details on how to set up Vagrant are in the [vagrant guide](vagrant_guide.md).
39
40## Verify Your Installation
411. If you haven't already, obtain this repository ([https://github.com/qmk/qmk_firmware](https://github.com/qmk/qmk_firmware)). You can either download it as a zip file and extract it, or clone it using the command line tool git or the Github Desktop application.
422. Open up a terminal or command prompt and navigate to the `qmk_firmware` folder using the `cd` command. The command prompt will typically open to your home directory. If, for example, you cloned the repository to your Documents folder, then you would type `cd Documents/qmk_firmware`. If you extracted the file from a zip, then it may be named `qmk_firmware-master` instead.
433. To confirm that you're in the correct location, you can display the contents of your current folder using the `dir` command on Windows, or the `ls` command on Linux or Mac. You should see several files, including `readme.md` and a `quantum` folder. From here, you need to navigate to the appropriate folder under `keyboards/`. For example, if you're building for a Planck, run `cd keyboards/planck`.
444. Once you're in the correct keyboard-specific folder, run the `make` command. This should output a lot of information about the build process. More information about the `make` command can be found below.
45
46## Customizing, Building, and Deploying Your Firmware
47
48### The Make command
49
50The `make` command is how you compile the firmware into a .hex file, which can be loaded by a dfu programmer (like dfu-progammer via `make dfu`) or the [Teensy loader](https://www.pjrc.com/teensy/loader.html) (only used with Teensys). You can run `make` from the root (`/`), your keyboard folder (`/keyboards/<keyboard>/`), or your keymap folder (`/keyboards/<keyboard>/keymaps/<keymap>/`) if you have a `Makefile` there (see the example [here](/doc/keymap_makefile_example.mk)).
51
52By default, this will generate a `<keyboard>_<keymap>.hex` file in whichever folder you run `make` from. These files are ignored by git, so don't worry about deleting them when committing/creating pull requests.
53
54* The "root" (`/`) folder is the qmk_firmware folder, in which are `doc`, `keyboard`, `quantum`, etc.
55* The "keyboard" folder is any keyboard project's folder, like `/keyboards/planck`.
56* The "keymap" folder is any keymap's folder, like `/keyboards/planck/keymaps/default`.
57
58Below is a list of the useful `make` commands in QMK:
59
60* `make` - cleans automatically and builds your keyboard and keymap depending on which folder you're in. This defaults to the "default" layout (unless in a keymap folder), and Planck keyboard in the root folder
61 * `make keyboard=<keyboard>` - specifies the keyboard (only to be used in root)
62 * `make keymap=<keymap>` - specifies the keymap (only to be used in root and keyboard folder - not needed when in keymap folder)
63* `make quick` - skips the clean step (cannot be used immediately after modifying config.h or Makefiles)
64* `make dfu` - (requires dfu-programmer) builds and flashes the keymap to your keyboard once placed in reset/dfu mode (button or press `KC_RESET`). This does not work for Teensy-based keyboards like the ErgoDox EZ.
65 * `keyboard=` and `keymap=` are compatible with this
66* `make all-keyboards` - builds all keymaps for all keyboards and outputs status of each (use in root)
67* `make all-keyboards-default` - builds all default keymaps for all keyboards and outputs status of each (use in root)
68* `make all-keymaps [keyboard=<keyboard>]` - builds all of the keymaps for whatever keyboard folder you're in, or specified by `<keyboard>`
69* `make all-keyboards-quick`, `make all-keyboards-default-quick` and `make all-keymaps-quick [keyboard=<keyboard>]` - like the normal "make-all-*" commands, but they skip the clean steps
70
71Other, less useful functionality:
72
73* `make COLOR=false` - turns off color output
74* `make SILENT=true` - turns off output besides errors/warnings
75* `make VERBOSE=true` - outputs all of the avr-gcc stuff (not interesting)
76
77### The Makefile
78
79There are 3 different `make` and `Makefile` locations:
80
81* root (`/`)
82* keyboard (`/keyboards/<keyboard>/`)
83* keymap (`/keyboards/<keyboard>/keymaps/<keymap>/`)
84
85The root contains the code used to automatically figure out which keymap or keymaps to compile based on your current directory and commandline arguments. It's considered stable, and shouldn't be modified. The keyboard one will contain the MCU set-up and default settings for your keyboard, and shouldn't be modified unless you are the producer of that keyboard. The keymap Makefile can be modified by users, and is optional. It is included automatically if it exists. You can see an example [here](/doc/keymap_makefile_example.mk) - the last few lines are the most important. The settings you set here will override any defaults set in the keyboard Makefile. **It is required if you want to run `make` in the keymap folder.**
86
87### The `config.h` file
88
89There are 2 `config.h` locations:
90
91* keyboard (`/keyboards/<keyboard>/`)
92* keymap (`/keyboards/<keyboard>/keymaps/<keymap>/`)
93
94The keyboard `config.h` is included only if the keymap one doesn't exist. The format to use for your custom one [is here](/doc/keymap_config_h_example.h). If you want to override a setting from the parent `config.h` file, you need to do this:
95
96```
97#undef MY_SETTING
98#define MY_SETTING 4
99```
100
101For a value of `4` for this imaginary setting. So we `undef` it first, then `define` it.
102
103You can then override any settings, rather than having to copy and paste the whole thing.
diff --git a/docs/build_old.md b/docs/build_old.md
deleted file mode 100644
index 9ae3a64ae..000000000
--- a/docs/build_old.md
+++ /dev/null
@@ -1,187 +0,0 @@
1Build Firmware and Program Controller
2=====================================
3
4## This guide may be out-dated - use [build_guide.md](build_guide.md) instead
5
6Download and Install
7--------------------
8### 1. Install Tools
9
101. **Toolchain** On Windows install [MHV AVR Tools][mhv] for AVR GCC compiler and [Cygwin][cygwin](or [MinGW][mingw]) for shell terminal. On Mac you can use [CrossPack][crosspack]. On Linux you can install AVR GCC (and avr-libc) with your favorite package manager or run the avr_setup.sh script in the root of this repository.
11
122. **Programmer** On Windows install [Atmel FLIP][flip]. On Mac and Linux install [dfu-programmer][dfu-prog].
13
143. **Driver** On Windows you start DFU bootloader on the chip first time you will see 'Found New Hardware Wizard' to install driver. If you install device driver properly you can find chip name like 'ATmega32U4' under 'LibUSB-Win32 Devices' tree on 'Device Manager'. If not you shall need to update its driver on 'Device Manager'. You will find the driver in `FLIP` install directory like: C:\Program Files (x86)\Atmel\Flip 3.4.5\usb\. In case of `dfu-programmer` use its driver.
15
16If you use PJRC Teensy you don't need step 2 and 3 above, just get [Teensy loader][teensy-loader].
17
18
19### 2. Download source
20You can find firmware source at github:
21
22- <https://github.com/tmk/tmk_keyboard>
23
24If you are familiar with `Git` tools you are recommended to use it but you can also download zip archive from:
25
26- <https://github.com/tmk/tmk_keyboard/archive/master.zip>
27
28
29Build firmware
30--------------
31### 1. Open terminal
32Open terminal window to get access to commands. Use Cygwin(or MingGW) `shell terminal` in Windows or `Terminal.app` on Mac OSX. In Windows press `Windows` key and `R` then enter `cmd` in 'Run command' dialog showing up.
33
34### 2. Change directory
35Move to project directory in the firmware source.
36
37 cd tmk_keyboard/{'keyboard' or 'converter'}/<project>
38
39### 3. Make
40Build firmware using GNU `make` command. You'll see `<project>_<variant>.hex` file in that directory unless something unexpected occurs in build process.
41
42
43 make -f Makefile.<variant> clean
44 make -f Makefile.<variant>
45
46
47
48
49Program Controller
50------------------
51Now you have **hex** file to program on current directory. This **hex** is only needed to program your controller, other files are used for development and you may leave and forget them.
52
53### 1. Start bootloader
54How to program controller depends on controller chip and its board design. To program AVR USB chips you'll need to start it up in bootloader mode. Most of boards with the chip have a push button to let bootloader come up. Consult with your controller board manual.
55
56### 2. Program with DFU bootloader
57Stock AVR USB chip including ATmega32U4 has DFU bootloader by factory default. `FLIP` is a DFU programmer on Windows offered by Atmel. Open source command line tool `dfu-programmer` also supports AVR chips, it runs on Linux, Mac OSX and even Windows.
58
59To program AVR chip with DFU bootloader use `FLIP` or `dfu-programmer`.
60If you have a proper program command in `Makefile` just type this.
61
62`FLIP` has two version of tool, GUI app and command line program. If you want GUI see tutorial below.
63To use command line tool run this command. Note that you need to set PATH variable properly.
64
65 $ make -f Makefile.<variant> flip
66
67Or to program with `dfu-programmer` run:
68
69 $ make -f Makefile.<variant> dfu
70
71#### FLIP GUI tutorial
721. On menu bar click Device -> Select, then. `ATmega32u4`.
732. On menu bar click Settings -> Communication -> USB, then click 'Open' button on 'USB Port Connection' dialog.
74At this point you'll see grey-outed widgets on the app get colored and ready.
75
763. On menu bar click File -> Load HEX File, then select your firmware hex file on File Selector dialog.
774. On 'Operations Flow' panel click 'Run' button to load the firmware binary to the chip. Note that you should keep 'Erase', 'Blank Check', 'Program' and 'Verify' check boxes selected.
785. Re-plug USB cord or click 'Start Application' button to restart your controller.
79Done.
80
81See also these instructions if you need.
82
83- <http://code.google.com/p/micropendous/wiki/LoadingFirmwareWithFLIP>
84- <http://www.atmel.com/Images/doc7769.pdf>
85
86
87### 3. Program with Teensy Loader
88If you have PJRC Teensy see instruction of `Teensy Loader`.
89
90- <http://www.pjrc.com/teensy/loader.html>
91
92Or use this command if you have command line version of Teensy Loader installed.
93
94 $ make -f Makefile.<variant> teensy
95
96
97### 4. Program with Other programmer
98You may want to use other programmer like `avrdude` with AVRISPmkII, Arduino or USBasp. In that case you can still use make target `program` for build with configuring `PROGRAM_CMD` in Makefile.
99
100 $ make -f Makefile.<variant> program
101
102
103[cygwin]: https://www.cygwin.com/
104[mingw]: http://www.mingw.org/
105[mhv]: https://infernoembedded.com/products/avr-tools
106[winavr]: http://winavr.sourceforge.net/
107[crosspack]: http://www.obdev.at/products/crosspack/index.html
108[flip]: http://www.atmel.com/tools/FLIP.aspx
109[dfu-prog]: http://dfu-programmer.sourceforge.net/
110[teensy-loader]:http://www.pjrc.com/teensy/loader.html
111
112
113
114Makefile Options
115----------------
116### 1. MCU and Frequency.
117
118 MCU = atmega32u4 # Teensy 2.0
119 #MCU = at90usb1286 # Teensy++ 2.0
120 F_CPU = 16000000
121
122Set your MCU and its clock in Hz.
123
124 # Boot Section Size in *bytes*
125 # Teensy halfKay 512
126 # Atmel DFU loader 4096
127 # LUFA bootloader 4096
128 OPT_DEFS += -DBOOTLOADER_SIZE=4096
129
130If you are using PJRC Teensy use `512` for `BOOTLOADER_SIZE`, otherwise use `4096` unless you are sure.
131
132### 2. Features
133Optional. Note that ***comment out*** with `#` to disable them.
134
135 BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
136 MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
137 EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
138 CONSOLE_ENABLE = yes # Console for debug(+400)
139 COMMAND_ENABLE = yes # Commands for debug and configuration
140 SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
141 #NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
142 #BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
143
144### 3. Programmer
145Optional. Set proper command for your controller, bootloader and programmer. This command can be used with `make program`. Not needed if you use `FLIP`, `dfu-programmer` or `Teensy Loader`.
146
147 # avrdude with AVRISPmkII
148 PROGRAM_CMD = avrdude -p $(MCU) -c avrispmkII -P USB -U flash:w:$(TARGET).hex
149
150 # avrdude with USBaspLoader
151 PROGRAM_CMD = avrdude -p $(MCU) -c usbasp -U flash:w:$(TARGET).hex
152
153 # avrdude with arduino
154 PROGRAM_CMD = avrdude -p $(MCU) -c arduino -P COM1 -b 57600 -U flash:w:$(TARGET).hex
155
156
157
158Config.h Options
159----------------
160### 1. Magic command key combination
161
162 #define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KB_LSHIFT) | MOD_BIT(KB_RSHIFT)))
163
164### 2. Mechanical Locking Support for CapsLock
165
166 /* Mechanical locking CapsLock support. Use KC_LCAP instead of KC_CAPS in keymap */
167 #define CAPSLOCK_LOCKING_ENABLE
168 /* Locking CapsLock re-synchronize hack */
169 #define CAPSLOCK_LOCKING_RESYNC_ENABLE
170
171### 3. Disable Debug and Print
172
173 /* disable debug print */
174 #define NO_DEBUG
175
176 /* disable print */
177 #define NO_PRINT
178
179### 4. Disable Action Features
180
181 #define NO_ACTION_LAYER
182 #define NO_ACTION_TAPPING
183 #define NO_ACTION_ONESHOT
184 #define NO_ACTION_MACRO
185 #define NO_ACTION_FUNCTION
186
187***TBD***
diff --git a/docs/cygwin_guide.md b/docs/cygwin_guide.md
deleted file mode 100644
index 05d71961a..000000000
--- a/docs/cygwin_guide.md
+++ /dev/null
@@ -1,352 +0,0 @@
1#Planck Advanced (but not too advanced) `cygwin` Users Guide
2If you are a user of the [cygwin environment](https://cygwin.com) in Windows and want the freedom to use the latest tools available, then this is the guide for you. If compiling your own copy of the latest and greatest Gnu C Compiler makes you super happy, then this is the guide for you. If the command line make you smile, then this is the guide for you.
3
4This guide was written step by step as I went through the process on a `Windows 10` `x86_64` and a `Windows 7` `amd k10` based system. This should be generally applicable to to any `Windows` environment with `cygwin`.
5
6#####Do not skip steps. Do not move past a step until the previous step finishes successfully.
7
8Based on [avr-libc installation guide](http://www.nongnu.org/avr-libc/user-manual/install_tools.html)
9
10##Get the Required Packages
11Download the `cygwin` setup ([x86_64](https://cygwin.com/setup-x86_64.exe)) and install the default system plus the following if they are not already selected:
12- devel/git
13- devel/gcc-core
14- devel/gcc-g++
15- devel/flex
16- devel/bison
17- devel/make
18- devel/texinfo
19- devel/gettext-devel
20- devel/automake
21- devel/autoconfig
22- devel/libtool
23- text/gettext
24- libs/libgcc1
25- interpreters/m4
26- web/wget
27- archive/unzip
28
29The following sources will be required:
30- [gmp](https://gmplib.org/) (6.1.0)
31- [mpfr](http://www.mpfr.org/) (3.1.4)
32- [mpc](http://www.multiprecision.org/) (1.0.3)
33- [binutils](https://www.sourceware.org/binutils/) (2.26)
34- [gcc](https://gcc.gnu.org/) (5.3.0)
35- [avr-libc](http://www.nongnu.org/avr-libc/) (2.0.0)
36
37The `dfu-programmer` will be required to flash the new firmware
38- [dfu-programmer](https://dfu-programmer.github.io/) (0.7.2)
39
40The set of commands below will create a directory (`~/local/avr`) for the sources you compile to be installed on the machine and a directory (`~/src`) for these source files to be stored. The commands then download the sources of the needed packages and unpack them. Note: the expand commands are different depending on if the packages are offered as a `bz2` or `gz` archive
41```
42$ mkdir ~/local
43$ mkdir ~/local/avr
44$ mkdir ~/src
45$ cd ~/src
46$ wget https://gmplib.org/download/gmp/gmp-6.1.0.tar.bz2
47$ wget http://www.mpfr.org/mpfr-3.1.4/mpfr-3.1.4.tar.bz2
48$ wget ftp://ftp.gnu.org/gnu/mpc/mpc-1.0.3.tar.gz
49$ wget http://ftp.gnu.org/gnu/binutils/binutils-2.26.tar.gz
50$ wget http://mirror0.babylon.network/gcc/releases/gcc-5.3.0/gcc-5.3.0.tar.gz
51$ wget http://download.savannah.gnu.org/releases/avr-libc/avr-libc-2.0.0.tar.bz2
52$ tar -xjf gmp-6.1.0.tar.bz2
53$ tar -xjf mpfr-3.1.4.tar.bz2
54$ tar -zxf mpc-1.0.3.tar.gz
55$ tar -zxf binutils-2.26.tar.gz
56$ tar -zxf gcc-5.3.0.tar.gz
57$ tar -xjf avr-libc-2.0.0.tar.bz2
58```
59
60##Setup the Build Environment
61These commands will set up the install directory and the `PATH` variable, which will allow you to access your installed packages. Note: if you close the `cygwin` terminal window, you will need to rerun these commands, they are not permanent.
62```
63$ PREFIX=$HOME/local/avr
64$ export PREFIX
65$ PATH=/usr/local/bin:/usr/local/lib:/usr/local/include:/bin:/lib:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS
66$ PATH=$PATH:$PREFIX/bin:$PREFIX/lib
67$ export PATH
68```
69
70##The `gcc` Required Math Library Packages
71The following packages are required to be complied and installed in order to compile `gcc`. They are not sufficiently available through the `cygwin` package system, so we have to make them ourselves. They must be complied in this order because each one depends on the previous. Verfiy that for each package, `make check` returns all passing and no fails.
72
73###Build and Install `gmp`
74```
75$ cd ~/src/gmp-6.1.0
76$ ./configure --enable-static --disable-shared
77$ make
78$ make check
79$ make install
80```
81
82###Build and Install `mpfr`
83```
84$ cd ~/src/mpfr-3.1.4
85$ ./configure --with-gmp-build=../gmp-6.1.0 --enable-static --disable-shared
86$ make
87$ make check
88$ make install
89```
90
91###Build and Install `mpc`
92```
93$ cd ~/src/mpc-1.0.3
94$ ./configure --with-gmp=/usr/local --with-mpfr=/usr/local --enable-static --disable-shared
95$ make
96$ make check
97$ make install
98```
99
100##OPTIONAL Part
101You can build and install a brand new `gcc` or you can use the one supplied by `cygwin`. This will take about 4-5 hours to compile (It is a "native build", so it does the entire build **3 times**. This takes a long while).
102
103###Build and Install `gcc` for Your Machine
104```
105$ cd ~/src/gcc-5.3.0
106$ mkdir obj-local
107$ cd obj-local
108$ ../configure --enable-languages=c,c++ --with-gmp=/usr/local --with-mpfr=/usr/local --with-mpc=/usr/local --enable-static --disable-shared
109$ make
110$ make install
111```
112##End OPTIONAL Part
113
114###Build and Install `binutils` for Your Machine
115```
116$ cd ~/src/binutils-2.26
117$ mkdir obj-local
118$ cd obj-local
119$ ../configure
120$ make
121$ make install
122```
123
124##Buliding `binutils`, `gcc`, and `avr-libc` for the AVR system
125Now we can make the critical stuff for compiling our firmware: `binutils`, `gcc`, and `avr-libc` for the AVR architecture. These allow us to build and manipulate the firmware for the keyboard.
126
127###Build `binutils` for AVR
128If you plan to build and install `avr-gdb` also, use the `gdb` install at the end of this guide as it also builds the `binutils`
129```
130$ cd ~/src/binutils-2.26
131$ mkdir obj-avr
132$ cd obj-avr
133$ ../configure --prefix=$PREFIX --target=avr --disable-nls
134$ make
135$ make install
136```
137
138###Build `gcc` for AVR
139```
140$ cd ~/src/gcc-5.3.0
141$ mkdir obj-avr
142$ cd obj-avr
143$ ../configure --prefix=$PREFIX --target=avr --enable-languages=c,c++ --with-gmp=/usr/local --with-mpfr=/usr/local --with-mpc=/usr/local --enable-static --disable-shared --disable-nls --disable-libssp --with-dwarf2
144$ make
145$ make install
146```
147
148###Build `avr-libc` for AVR
149For building the `avr-libc`, we have to specify the host build system. In my case it is `x86_64-unknown-cygwin`. You can look for build system type in the `gcc` configure notes for the proper `--build` specification to pass when you configure `avr-libc`.
150```
151$ cd ~/src/avr-libc-2.0.0
152$ ./configure --prefix=$PREFIX --build=x86_64-unknown-cygwin --host=avr
153$ make
154$ make install
155```
156
157##Building 'dfu-programmer' for flashing the firmware via USB and installing the drivers
158We can either build our own, or use the precomplied binaries. The precompiled binaries don't play well with `cygwin` so it is better to build them ourselves. The procedure for the precompiled binaries is included at the end of this guide.
159
160### Build and Install the `libusb`
161The `dfu-programmer` requires `libusb` so that it can interact with the USB system. These repos must be bootstrapped in order to create an appropriate `./configure` and `Makefile` for your system.
162```
163$ cd ~/src
164$ git clone https://github.com/libusb/libusb.git
165$ cd libusb
166$ ./bootstrap.sh
167$ ./configure
168$ make
169$ make install
170```
171
172### Build and Install the `dfu-programmer`
173```
174$ cd ~/src
175$ git clone https://github.com/dfu-programmer/dfu-programmer.git
176$ cd dfu-programmer
177$ ./bootstrap.sh
178$ ./configure
179$ make
180$ make install
181```
182
183Verify the installation with:
184```
185$ which dfu-programmer
186/usr/local/bin/dfu-programmer
187
188$ dfu-programmer
189dfu-programmer 0.7.2
190https://github.com/dfu-programmer/dfu-programmer
191Type 'dfu-programmer --help' for a list of commands
192 'dfu-programmer --targets' to list supported target devices
193```
194If you are not getting the above result, you will not be able to flash the firmware!
195
196###Install the USB drivers
197The drivers are included in the windows binary version of [`dfu-programmer` 0.7.2](http://iweb.dl.sourceforge.net/project/dfu-programmer/dfu-programmer/0.7.2/dfu-programmer-win-0.7.2.zip).
198```
199$ cd ~/src
200$ wget http://iweb.dl.sourceforge.net/project/dfu-programmer/dfu-programmer/0.7.2/dfu-programmer-win-0.7.2.zip
201$ unzip dfu-programmer-win-0.7.2.zip -d dfu-programmer-win-0.7.2
202```
203
204or
205
206The official drivers are found in [Atmel's `FLIP` installer](http://www.atmel.com/images/Flip%20Installer%20-%203.4.7.112.exe). Download and then install `FLIP`. Upon installation, the drivers will be found in `C:\Program Files (x86)\Atmel\Flip 3.4.7\usb`.
207
208Then, from an **administrator-privileged** `Windows` terminal, run the following command (adjust the path for username, etc. as necessary) and accept the prompt that pops up:
209```
210C:\> pnputil -i -a C:\cygwin64\home\Kevin\src\dfu-programmer-win-0.7.2\dfu-prog-usb-1.2.2\atmel_usb_dfu.inf
211or
212C:\> pnputil -i -a "C:\Program Files (x86)\Atmel\Flip 3.4.7\usb\atmel_usb_dfu.inf"
213```
214
215This should be the result:
216```
217Microsoft PnP Utility
218
219Processing inf : atmel_usb_dfu.inf
220Successfully installed the driver on a device on the system.
221Driver package added successfully.
222Published name : oem104.inf
223
224
225Total attempted: 1
226Number successfully imported: 1
227```
228
229Alternatively, the `Windows` driver can be installed when prompted by `Windows` when the keyboard is attached. Do not let `Windows` search for a driver; specify the path to search for a driver and point it to the `atmel_usb_dfu.inf` file.
230
231##Building and Flashing the Planck firmware!
232If you did everything else right. This part should be a snap! Grab the latest sources from `github`, make the Plank firmware, then flash it.
233
234###Build Planck and Load the Firmware
235```
236$ cd ~/src
237$ git clone https://github.com/qmk/qmk_firmware.git
238$ cd qmk_firmware/keyboards/planck
239$ make
240```
241
242Make sure there are no errors. You should end up with this or something similar:
243```
244Creating load file for Flash: planck.hex
245avr-objcopy -O ihex -R .eeprom -R .fuse -R .lock -R .signature planck.elf planck.hex
246
247Creating load file for EEPROM: planck.eep
248avr-objcopy -j .eeprom --set-section-flags=.eeprom="alloc,load" \
249--change-section-lma .eeprom=0 --no-change-warnings -O ihex planck.elf planck.eep || exit 0
250
251Creating Extended Listing: planck.lss
252avr-objdump -h -S -z planck.elf > planck.lss
253
254Creating Symbol Table: planck.sym
255avr-nm -n planck.elf > planck.sym
256
257Size after:
258 text data bss dec hex filename
259 18602 82 155 18839 4997 planck.elf
260
261-------- end --------
262```
263
264If you do not get the above, you **did not** build the firmware, and you will have nothing to flash. If you have the fresh clone from `github`, it was probably something gone wrong in this install process, go check and see what didn't work and threw errors or what steps you might have missed.
265
266But if everything went OK, you are ready to flash! Press the reset button on the bottom of the Planck, wait two seconds, then:
267```
268$ make dfu
269```
270.
271.
272.
273profit!!!
274
275
276
277
278
279##extra bits...
280
281###Installing Precompiled `dfu-programmer` Binaries (not recommended for `cygwin`)
282To install the `dfu-programmer` from the binaries, we must get if from [the `dfu-programmer` website](https://dfu-programmer.github.io/) ([0.7.2](http://iweb.dl.sourceforge.net/project/dfu-programmer/dfu-programmer/0.7.2/dfu-programmer-win-0.7.2.zip)).
283
284Copy this file into your `cygwin` home\src directory. (For me, it is `C:\cygwin64\home\Kevin\src`), extract the files, move `dfu-programmer.exe` to `~/local/avr/bin`. Most obnoxiously, the `libusb0_x86.dll` and `libusb0.sys` need to be moved from `./dfu-prog-usb-1.2.2/x86/` to a directory in the `Windows` `PATH` and the `cygwin` `PATH`. This is because the `dfu-programmer` binary is `mingw` based, not `cygwin` based, so the `dlls` do not cooperate. I achieved acceptable pathing by moving the files to `C:\cygwin64\home\Kevin\local\avr\bin` Then, in a `WINDOWS` command prompt running (Adjusting your path for username, etc. as needed):
285```
286C:\> set PATH=%PATH%;C:\cygwin64\home\Kevin\local\avr\bin
287```
288
289Then, rename `libusb0_x86.dll` to `libusb0.dll`.
290
291You can tell that you were successful by trying to execute 'dfu-programmer' from the 'cygwin' prompt:
292```
293$ which dfu-programmer
294/home/Kevin/local/avr/bin/dfu-programmer
295
296$ dfu-programmer
297dfu-programmer 0.7.2
298https://github.com/dfu-programmer/dfu-programmer
299Type 'dfu-programmer --help' for a list of commands
300 'dfu-programmer --targets' to list supported target devices
301```
302
303If you are not getting the above result, you will not be able to flash the firmware!
304- Try making sure your `PATH` variables are set correctly for both `Windows` and `cygwin`.
305- Make sure the `dll` is named correctly.
306- Do not extract it with `cygwin`'s `unzip` as it does not set the executable permission. If you did it anyway, do `chmod +x dfu-programmer.exe`.
307- Still have problems? Try building it instead.
308
309
310##Debugging Tools
311
312These tools are for debugging your firmware, etc. before flashing. Theoretically, it can save your memory from wearing out. However, these tool do not work 100% for the Planck firmware.
313
314### `gdb` for AVR
315`gdb` has a simulator for AVR but it does not support all instructions (like WDT), so it immediately crashes when running the Planck firmware (because `lufa.c` disables the WDT in the first few lines of execution). But it can still be useful in debugging example code and test cases, if you know how to use it.
316
317```
318$ cd ~/src
319$ git clone git://sourceware.org/git/binutils-gdb.git
320$ cd binutils-gdb
321$ mkdir obj-avr
322$ cd obj-avr
323$ ../configure --prefix=$PREFIX --target=avr --build=x86_64-unknown-cygwin --with-gmp=/usr/local --with-mpfr=/usr/local --with-mpc=/usr/local --disable-nls --enable-static
324$ make
325$ make install
326```
327
328### `simulavr`
329`simulavr` is an AVR simulator. It runs the complied AVR elfs. `simulavr` does not support the `atmega32u4` device... it does `atmega32` but that is not good enough for the firmware (no PORTE and other things), so you cannot run the Planck firmware. I use it to simulate ideas I have for features in separate test projects.
330
331This one is a major pain in the butt because it has a lot of dependencies and it is buggy. I will do my best to explain it but... it was hard to figure out. A few things need to be changed in the 'Makefile' to make it work in `cygwin`.
332
333
334```
335$ cd ~/src
336$ git clone https://github.com/Traumflug/simulavr.git
337$ cd simulavr
338$ ./bootstrap
339$ ./configure --prefix=$PREFIX --enable-static --disable-tcl --disable-doxygen-doc
340```
341 Edit `src/Makefile.am` now so that `-no-undefined` is included (I did this by removing the SYS_MINGW conditional surrounding `libsim_la_LDFLAGS += -no-undefined` and `libsimulavr_la_LDFLAGS += -no-undefined \ libsimulavr_la_LIBADD += $(TCL_LIB)`. Also, `$(EXEEXT)` is added after `kbdgentables` in two places.
342
343```
344$ make
345$ make install
346```
347
348
349TODO:
350- git repos for all sources
351- command line magic for cygwin setup
352- better options for `dfu-drivers`
diff --git a/docs/embedding.md b/docs/embedding.md
deleted file mode 100644
index 5c2f3b31e..000000000
--- a/docs/embedding.md
+++ /dev/null
@@ -1,64 +0,0 @@
1# WARNING: Until issue [#173](https://github.com/tmk/tmk_keyboard/issues/173) goes through, the [core][1] repository will not be up-to-date with the latest changes and fixes, but can still be used.
2
3If you want to use TMK for your own keyboard project, you've got three options for embedding the [core][1].
4The recommended option is [subtrees](#1-git-subtree).
5
6After adding the embed you'll need to [modify the Makefile](#modifications-to-the-makefile) of your project to point to the core correctly.
7
8## 1. git subtree
9
10In order to set up the subtree in your project, first add the core repository as a remote:
11```
12git remote add -f core https://github.com/tmk/tmk_core
13```
14
15Then add the core as a subtree (directory) in your local repository:
16```
17git subtree add -P tmk_core core master --squash
18```
19
20And that's it!
21
22When you want to update the subtree in your repository to match the master on [tmk_core][1], do this:
23```
24git subtree pull -P tmk_core core master --squash
25```
26
27## 2. git submodule
28
29In order to set up the submodule in your project, first add a new submodule:
30```
31git submodule add https://github.com/tmk/tmk_core tmk_core
32```
33
34Then pull, sync and update the submodule:
35```
36git pull
37git submodule sync --recursive
38git submodule update --init --recursive
39```
40
41And that's it!
42
43When you want to update the subtree in your repository to match the master on [tmk_core][1], follow the same steps as above.
44
45If you want to clone a repository from GitHub that has submodule(s) in it, pass <kbd>--recursive</kbd> when cloning, like so:
46`git clone --recursive https://github.com/<username>/<repository>`
47
48## 3. Manually (without git)
49
50*Note: This is not recommended in any way, but it's still possible.*
51
52Download a zipped version of the [tmk_core][1] repository using this link:
53<https://github.com/tmk/tmk_core/archive/master.zip>
54
55Extract the zip in your project's directory, then rename the folder to <kbd>tmk_core</kbd>.
56
57## Modifications to the *Makefile*
58
59The one thing you have to make sure to change in the *Makefile* (compared to [tmk_keyboard](https://github.com/tmk/tmk_keyboard) drivers' *[Makefile](https://github.com/tmk/tmk_keyboard/blob/master/keyboard/gh60/Makefile#L45)*) is the "TMK_DIR" variable, which needs to point to the embed directory:
60```Makefile
61TMK_DIR = ./tmk_core
62```
63
64[1]: https://github.com/tmk/tmk_core \ No newline at end of file
diff --git a/docs/git_subtree.md b/docs/git_subtree.md
deleted file mode 100644
index 4fd7f8bea..000000000
--- a/docs/git_subtree.md
+++ /dev/null
@@ -1,7 +0,0 @@
1## Update core branch procedure
2 git co master
3 git subtree split -P tmk_core -b <tmp_branch>
4 git co core
5 git merge <tmp_branch>
6 git co master
7 git subtree merge -P tmk_core --squash
diff --git a/docs/hhkb_alt_controller.md b/docs/hhkb_alt_controller.md
deleted file mode 100644
index c12d8d7ff..000000000
--- a/docs/hhkb_alt_controller.md
+++ /dev/null
@@ -1,5 +0,0 @@
1# Alternative Controller for HHKB
2
3* [Geekhack.org thread](https://geekhack.org/index.php?topic=12047.0)
4
5* [Connector unmate](https://geekhack.org/index.php?topic=12047.msg1543860#msg1543860) \ No newline at end of file
diff --git a/docs/keymap_config_h_example.h b/docs/keymap_config_h_example.h
deleted file mode 100644
index 8893d122e..000000000
--- a/docs/keymap_config_h_example.h
+++ /dev/null
@@ -1,8 +0,0 @@
1#ifndef CONFIG_USER_H
2#define CONFIG_USER_H
3
4#include "../../config.h"
5
6// place overrides here
7
8#endif
diff --git a/docs/keymap_examples.md b/docs/keymap_examples.md
deleted file mode 100644
index 094011931..000000000
--- a/docs/keymap_examples.md
+++ /dev/null
@@ -1,37 +0,0 @@
1# Share your keymap idea here!
2https://github.com/tmk/tmk_keyboard/issues/265
3
4---
5
6## Reverse-shifted for numbers
7With pressing Shift and '1' key you get **1** while with just '1' key you get **!**.
8- https://geekhack.org/index.php?topic=41989.msg1959718#msg1959718
9
10
11## KBT Pure layout
12Keymap code on Alps64
13https://github.com/thisisshi/tmk_keyboard/blob/15fe63e8d181a8a95988dcc71929f0024df55caa/keyboard/alps64/keymap_pure.c
14
15and guide.
16https://github.com/thisisshi/tmk_keyboard/blob/77ac0805ade565fb23657e3644c920ada71edccf/keyboard/alps64/Guide.md
17
18## Prevent stuck modifiers
19
20Consider the following scenario:
21
221. Layer 0 has a key defined as Shift.
232. The same key is defined on layer 1 as the letter A.
243. User presses Shift.
254. User switches to layer 1 for whatever reason.
265. User releases Shift, or rather the letter A.
276. User switches back to layer 0.
28
29Shift was actually never released and is still considered pressed.
30
31If such situation bothers you add this to your `config.h`:
32
33 #define PREVENT_STUCK_MODIFIERS
34
35This option uses 5 bytes of memory per every 8 keys on the keyboard
36rounded up (5 bits per key). For example on Planck (48 keys) it uses
37(48/8)\*5 = 30 bytes.
diff --git a/docs/keymap_makefile_example.mk b/docs/keymap_makefile_example.mk
deleted file mode 100644
index f4671a9d1..000000000
--- a/docs/keymap_makefile_example.mk
+++ /dev/null
@@ -1,21 +0,0 @@
1# Build Options
2# change to "no" to disable the options, or define them in the Makefile in
3# the appropriate keymap folder that will get included automatically
4#
5BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
6MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
7EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
8CONSOLE_ENABLE = no # Console for debug(+400)
9COMMAND_ENABLE = yes # Commands for debug and configuration
10NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
11BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
12MIDI_ENABLE = no # MIDI controls
13AUDIO_ENABLE = no # Audio output on port C6
14UNICODE_ENABLE = no # Unicode
15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
16RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
17SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
18
19ifndef QUANTUM_DIR
20 include ../../../../Makefile
21endif \ No newline at end of file
diff --git a/docs/keymap_old.md b/docs/keymap_old.md
deleted file mode 100644
index 3ea138ea8..000000000
--- a/docs/keymap_old.md
+++ /dev/null
@@ -1,685 +0,0 @@
1Keymap framework - how to define your keymap
2============================================
3***NOTE: This is updated for QMK but this is still work in progress. This may still be inconsistent with the source code.***
4
5QMK is based on TMK. Understanding the essential changes made should help you understand variable names etc.
6
7## TMK vs. QMK
8
9| Firmware |TMK |QMK |
10|---------------------------|-----------------------|-------------------------|
11| Maintainer |hasu |Jack Humbert et al. |
12| Build path customization | `TMK_DIR = ...` | `include .../Makefile` |
13| `keymaps` data | 3D array of `uint8_t` holding **keycode** | 3D array of `uint16_t` holding **action code** |
14| `fn_actions` data | 1D array of `uint16_t` holding **action code** | 1D array of `uint16_t` holding **action code** |
15
16Since QMK is based on TMK and uses major portion of TMK code as is, understanding the essential changes made should help you understand the code.
17
18## 0. Keymap and layers
19In QMK, **`const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS]`** holds multiple **layers** of keymap information in **16 bit** data holding the **action code**. You can define **32 layers** at most.
20
21For trivial key definitions, the higher 8 bits of the **action code** are all 0 and the lower 8 bits holds the USB HID usage code generated by the key as **keycode**.
22
23Respective layers can be validated simultaneously. Layers are indexed with 0 to 31 and higher layer has precedence.
24
25 Keymap: 32 Layers Layer: action code matrix
26 ----------------- ---------------------
27 stack of layers array_of_action_code[row][column]
28 ____________ precedence _______________________
29 / / | high / ESC / F1 / F2 / F3 ....
30 31 /___________// | /-----/-----/-----/-----
31 30 /___________// | / TAB / Q / W / E ....
32 29 /___________/ | /-----/-----/-----/-----
33 : _:_:_:_:_:__ | : /LCtrl/ A / S / D ....
34 : / : : : : : / | : / : : : :
35 2 /___________// | 2 `--------------------------
36 1 /___________// | 1 `--------------------------
37 0 /___________/ V low 0 `--------------------------
38
39
40Sometimes, the action code stored in keymap may be referred as keycode in some documents due to the TMK history.
41
42### 0.1 Keymap layer status
43Keymap layer has its state in two 32 bit parameters:
44
45* **`default_layer_state`** indicates a base keymap layer(0-31) which is always valid and to be referred.
46* **`layer_state`** () has current on/off status of the layer on its each bit.
47
48Keymap has its state in two parameter **`default_layer`** indicates a base keymap layer(0-31) which is always valid and to be referred, **`keymap_stat`** is 16bit variable which has current on/off status of layers on its each bit.
49Keymap layer '0' is usually `default_layer` and which is the only valid layer and other layers is initially off after boot up firmware, though, you can configured them in `config.h`.
50To change `default_layer` will be useful when you switch key layout completely, say you want Colmak instead of Qwerty.
51
52 Initial state of Keymap Change base layout
53 ----------------------- ------------------
54
55 31 31
56 30 30
57 29 29
58 : :
59 : : ____________
60 2 ____________ 2 / /
61 1 / / ,->1 /___________/
62 ,->0 /___________/ | 0
63 | |
64 `--- default_layer = 0 `--- default_layer = 1
65 layer_state = 0x00000001 layer_state = 0x00000002
66
67On the other hand, you shall change `layer_state` to overlay base layer with some layers for feature such as navigation keys, function key(F1-F12), media keys or special actions.
68
69 Overlay feature layer
70 --------------------- bit|status
71 ____________ ---+------
72 31 / / 31 | 0
73 30 /___________// -----> 30 | 1
74 29 /___________/ -----> 29 | 1
75 : : | :
76 : ____________ : | :
77 2 / / 2 | 0
78 ,->1 /___________/ -----> 1 | 1
79 | 0 0 | 0
80 | +
81 `--- default_layer = 1 |
82 layer_state = 0x60000002 <-'
83
84
85
86### 0.2 Layer Precedence and Transparency
87Note that ***higher layer has higher priority on stack of layers***, namely firmware falls down from top layer to bottom to look up keycode. Once it spots keycode other than **`KC_TRNS`**(transparent) on a layer it stops searching and lower layers aren't referred.
88
89You can place `KC_TRANS` on overlay layer changes just part of layout to fall back on lower or base layer.
90Key with `KC_TRANS` (`KC_TRNS` and `_______` are the alias) doesn't has its own keycode and refers to lower valid layers for keycode, instead.
91See example below.
92
93
94### 0.3 Keymap Example
95Keymap in this QMK is **`static const uint16_t PROGMEM keymaps[]`** C array in fact and you can define layers in it with **`KEYMAP()`** C macro and keycodes. To use complex actions you need to define `Fn` keycode in **`fn_actions[]`** array. It holds the 16 bit quantum keycode (action code).
96
97> Please note that keymap in the TMK, which QMK was forked from, is **`static const uint8_t PROGMEM keymaps[]`** C array which holds the 8 bit keycode (~USB HID usage code).
98
99This is a keymap example for [HHKB](http://en.wikipedia.org/wiki/Happy_Hacking_Keyboard) keyboard.
100This example has three layers, 'QWERTY' as base layer, 'FN' and 'MOUSE'.
101
102In this example,
103
104 `MO(layer)` is a **momentary layer switching** key.
105
106You can find other keymap definitions in file `keymap.c` located on project directories.
107```
108/*
109 * dbroqua HHKB Layout
110 */
111#include "hhkb.h"
112
113#define BASE 0
114#define FN 1
115#define MOUSE 2
116
117const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
118 /* BASE Level: Default Layer
119 * ,-----------------------------------------------------------------------------------------.
120 * | Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | \ | ` |
121 * |-----------------------------------------------------------------------------------------+
122 * | Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] | Bksp |
123 * |-----------------------------------------------------------------------------------------+
124 * | Ctrl | A | S | D | F | G | H | J | K | L | ; | ' | Enter |
125 * |-----------------------------------------------------------------------------------------+
126 * | Shift | Z | X | C | V | B | N | M | , | . | / | Shift | fn |
127 * +-----------------------------------------------------------------------------------------+
128 * | Gui | Alt | Space | AltGr |Mouse|
129 * `----------------------------------------------------------------´
130 */
131 [BASE] = KEYMAP(
132 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, \
133 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, \
134 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \
135 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(FN), \
136 KC_LGUI, KC_LALT, /* */ KC_SPC, KC_RALT, MO(MOUSE)
137 ),
138
139 /* FN Layer
140 * ,-----------------------------------------------------------------------------------------.
141 * | Pwr | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F0 | F11 | F12 | Ins | Del|
142 * |-----------------------------------------------------------------------------------------+
143 * | Caps | | | | | | | |PrtSc| Slck| Paus| Up | | |
144 * |-----------------------------------------------------------------------------------------+
145 * | | Vol-| Vol+| Mute| | | * | / | Home| PgUp| Left |Right| |
146 * |-----------------------------------------------------------------------------------------+
147 * | | Prev| Play| Next| | | + | - | End |PgDwn| Down| | |
148 * +-----------------------------------------------------------------------------------------+
149 * | | | | Stop | |
150 * `----------------------------------------------------------------´
151 */
152 [FN] = KEYMAP(
153 KC_PWR, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL, \
154 KC_CAPS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP, KC_TRNS, KC_TRNS, \
155 KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_TRNS, KC_TRNS, KC_PAST, KC_PSLS, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT, KC_TRNS, \
156 KC_TRNS, KC_MPRV, KC_MPLY, KC_MNXT, KC_TRNS, KC_TRNS, KC_PPLS, KC_PMNS, KC_END, KC_PGDN, KC_DOWN, KC_TRNS, KC_TRNS, \
157 KC_TRNS, KC_TRNS, KC_TRNS, KC_MSTP, KC_TRNS
158 ),
159
160 /* MOUSE Layer
161 * ,-----------------------------------------------------------------------------------------.
162 * | | | | | | | | | | | | | | | |
163 * |-----------------------------------------------------------------------------------------+
164 * | | | WUp | | | | | | | | Btn1| Up | Btn2| |
165 * |-----------------------------------------------------------------------------------------+
166 * | | WLt | WDn | WRt | | | | | | | Left |Right| |
167 * |-----------------------------------------------------------------------------------------+
168 * | | | | | | | | | | Btn3| Down| | |
169 * +-----------------------------------------------------------------------------------------+
170 * | | | | | |
171 * `----------------------------------------------------------------´
172 */
173 [MOUSE] = KEYMAP(
174 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, \
175 KC_TRNS, KC_TRNS, KC_WH_U, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_BTN1, KC_MS_U, KC_BTN2, KC_TRNS, \
176 KC_TRNS, KC_WH_L, KC_WH_D, KC_WH_R, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MS_L, KC_MS_R, KC_TRNS, \
177 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_BTN3, KC_MS_D, KC_TRNS, KC_TRNS, \
178 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
179 )
180};
181
182const uint16_t PROGMEM fn_actions[] = {
183
184};
185
186const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
187{
188 // MACRODOWN only works in this function
189 switch(id) {
190 case 0:
191 if (record->event.pressed) {
192 register_code(KC_RSFT);
193 } else {
194 unregister_code(KC_RSFT);
195 }
196 break;
197 }
198 return MACRO_NONE;
199};
200```
201
202
203## 1. Keycode
204See [`tmk_core/common/keycode.h`](../tmk_core/common/keycode.h) or keycode table below for the detail. Keycode is internal **8bit code** to indicate action performed on key in keymap. Keycodes are based on [HID Usage Keyboard/Keypad Page(0x07)](http://www.usb.org/developers/hidpage/Hut1_12v2.pdf) plus special codes in the `0xA5-DF` range.
205
206Keycode has `KC_` prefixed symbol respectively. Most of keycodes like `KC_A` have simple action registers key to host on press and unregister on release, while some of other keycodes has some special actions like `Fn` keys, Media control keys, System control keys and Mousekeys.
207
208keymaps[]
209
210In `KEYMAP()` macro, TMK recommends you to keep prefix part `KC_` of keycode to keep keymap compact. For example, just use `A` instead you place `KC_A` in `KEYMAP()`. But this doesn't apply for QMK.
211
212The `KEYMAP()` macro defines correspondence between the physical key location to the electrical key connection.
213
214Some keycodes has 7-letter **short name** such as `KC_COMM` in addition to descriptive name `KC_COMMA`, you'll prefer short one in `KEYMAP()`.
215
216### 1.0 Other key
217- `KC_NO` for no action
218- `KC_TRNS` for layer transparency (See above)
219
220### 1.1 Normal key
221- `KC_A` to `KC_Z`, `KC_1` to `KC_0` for alpha numeric key
222- `KC_MINS`, `KC_EQL`, `KC_GRV`, `KC_RBRC`, `KC_LBRC`, `KC_COMM`, `KC_DOT`, `KC_BSLS`, `KC_SLSH`, `KC_SCLN`, `KC_QUOT`
223- `KC_ESC`, `KC_TAB`, `KC_SPC`, `KC_BSPC`, `KC_ENT`, `KC_DEL`, `KC_INS`
224- `KC_UP`, `KC_DOWN`, `KC_RGHT`, `KC_LEFT`, `KC_PGUP`, `KC_PGDN`, `KC_HOME`, `KC_END`
225- `KC_CAPS`, `KC_NLCK`, `KC_SLCK`, `KC_PSCR`, `KC_PAUS`, `KC_APP`, `KC_F1` to `KC_F24`
226- `KC_P1` to `KC_P0`, `KC_PDOT`, `KC_PCMM`, `KC_PSLS`, `KC_PAST`, `KC_PMNS`, `KC_PPLS`, `KC_PEQL`, `KC_PENT` for keypad.
227
228### 1.2 Modifier
229There are 8 modifiers which has discrimination between left and right.
230
231- `KC_LCTL` and `KC_RCTL` for Control
232- `KC_LSFT` and `KC_RSFT` for Shift
233- `KC_LALT` and `KC_RALT` for Alt
234- `KC_LGUI` and `KC_RGUI` for Windows key or Command key in Mac
235
236### 1.3 Mousekey
237- `KC_MS_U`, `KC_MS_D`, `KC_MS_L`, `KC_MS_R` for mouse cursor
238- `KC_WH_U`, `KC_WH_D`, `KC_WH_L`, `KC_WH_R` for mouse wheel
239- `KC_BTN1`, `KC_BTN2`, `KC_BTN3`, `KC_BTN4`, `KC_BTN5` for mouse buttons
240
241### 1.4 System & Media key
242- `KC_PWR`, `KC_SLEP`, `KC_WAKE` for Power, Sleep, Wake
243- `KC_MUTE`, `KC_VOLU`, `KC_VOLD` for audio volume control
244- `KC_MNXT`, `KC_MPRV`, `KC_MSTP`, `KC_MPLY`, `KC_MSEL` for media control
245- `KC_MAIL`, `KC_CALC`, `KC_MYCM` for application launch
246- `KC_WSCH`, `KC_WHOM`, `KC_WBAK`, `KC_WFWD`, `KC_WSTP`, `KC_WREF`, `KC_WFAV` for web browser operation
247
248### 1.5 Fn key
249You don't need to use this functionality under QMK since this is a backward compatibility functionality. Unlike TMK, you can write action code itself directly in **`static const uint16_t PROGMEM keymaps[]`** C array using `MO(layer)`, etc.
250
251`KC_FNnn` are keycodes for `Fn` key which not given any actions at the beginning unlike most of keycodes has its own inborn action. To use these keycodes in `KEYMAP()` you need to assign action you want at first. Action of `Fn` key is defined in `fn_actions[]` and its index of the array is identical with number part of `KC_FNnn`. Thus `KC_FN0` keycode indicates the action defined in first element of the array. ***Only 32 `Fn` keys can be defined at most.***
252
253
254### 1.6 Keycode Table
255 See keycode table in [`doc/keycode.txt`](./keycode.txt) for description of keycodes.
256
257 In regard to implementation side most of keycodes are identical with [HID usage][HID_usage](pdf) sent to host for real and some virtual keycodes are defined to support special actions.
258[HID_usage]: http://www.usb.org/developers/hidpage/Hut1_12v2.pdf
259
260
261
262## 2. Action
263See [`common/action_code.h`](../common/action_code.h). Action is a **16bit code** and defines function to perform on events of a key like press, release, holding and tapping.
264
265Most of keys just register 8bit scancode to host, but to support other complex features needs 16bit extended action codes internally. However, using 16bit action codes in keymap results in double size in memory compared to using just keycodes. To avoid this waste 8bit keycodes are used in `KEYMAP()` instead of action codes.
266
267***You can just use keycodes of `Normal key`, `Modifier`, `Mousekey` and `System & Media key` in keymap*** to indicate corresponding actions instead of using action codes. While ***to use other special actions you should use keycode of `Fn` key defined in `fn_actions[]`.***
268
269
270### 2.1 Key Action
271This is a simple action that registers scancodes(HID usage in fact) to host on press event of key and unregister on release.
272
273#### Parameters
274+ **mods**: { ` MOD_LCTL`, ` MOD_LSFT`, ` MOD_LALT`, ` MOD_LGUI`,
275 ` MOD_RCTL`, ` MOD_RSFT`, ` MOD_RALT`, ` MOD_RGUI` }
276+ **key**: keycode
277
278
279#### 2.1.1 Normal key and Modifier
280***This action usually won't be used expressly in keymap*** because you can just use keycodes in `KEYMAP()` instead.
281
282You can define these actions on *'A'* key and *'left shift'* modifier with:
283
284 ACTION_KEY(KC_A)
285 ACTION_KEY(KC_LSFT)
286
287#### 2.1.2 Modified key
288This action is comprised of strokes of modifiers and a key. `Macro` action is needed if you want more complex key strokes.
289
290Say you want to assign a key to `Shift + 1` to get character *'!'* or `Alt + Tab` to switch application windows.
291
292 ACTION_MODS_KEY(MOD_LSFT, KC_1)
293 ACTION_MODS_KEY(MOD_LALT, KC_TAB)
294
295Or `Alt,Shift + Tab` can be defined. `ACTION_MODS_KEY(mods, key)` requires **4-bit modifier state** and a **keycode** as arguments. See `keycode.h` for `MOD_BIT()` macro.
296
297 ACTION_MODS_KEY(MOD_LALT | MOD_LSFT, KC_TAB)
298
299#### 2.1.3 Multiple Modifiers
300Registers multiple modifiers with pressing a key. To specify multiple modifiers use `|`.
301
302 ACTION_MODS(MOD_ALT | MOD_LSFT)
303
304#### 2.1.3 Modifier with Tap key([Dual role][dual_role])
305Works as a modifier key while holding, but registers a key on tap(press and release quickly).
306
307
308 ACTION_MODS_TAP_KEY(MOD_RCTL, KC_ENT)
309
310
311
312### 2.2 Layer Action
313These actions operate layers of keymap.
314
315#### Parameters
316You can specify a **target layer** of action and **when the action is executed**. Some actions take a **bit value** for bitwise operation.
317
318
319+ **layer**: `0`-`31`
320+ **on**: { `ON_PRESS` | `ON_RELEASE` | `ON_BOTH` }
321+ **bits**: 4-bit value and 1-bit mask bit
322
323
324#### 2.2.1 Default Layer
325Default Layer is a layer which always is valid and referred to when actions is not defined on other overlay layers.
326
327This sets Default Layer to given parameter `layer` and activate it.
328
329 ACTION_DEFAULT_LAYER_SET(layer)
330
331
332#### 2.2.2 Momentary
333Turns on `layer` momentarily while holding, in other words it activates when key is pressed and deactivate when released.
334
335 ACTION_LAYER_MOMENTARY(layer)
336
337
338#### 2.2.3 Toggle Switch
339Turns on `layer` with first type(press and release) and turns off with next.
340
341 ACTION_LAYER_TOGGLE(layer)
342
343
344#### 2.2.4 Momentary Switch with tap key
345Turns on `layer` momentary while holding, but registers key on tap(press and release quickly).
346
347 ACTION_LAYER_TAP_KEY(layer, key)
348
349
350#### 2.2.5 Momentary Switch with tap toggle
351Turns on `layer` momentary while holding and toggles it with serial taps.
352
353 ACTION_LAYER_TAP_TOGGLE(layer)
354
355
356#### 2.2.6 Invert state of layer
357Inverts current state of `layer`. If the layer is on it becomes off with this action.
358
359 ACTION_LAYER_INVERT(layer, on)
360
361
362#### 2.2.7 Turn On layer
363Turns on layer state.
364
365 ACTION_LAYER_ON(layer, on)
366
367Turns on layer state on press and turns off on release.
368
369 ACTION_LAYER_ON_OFF(layer)
370
371
372#### 2.2.8 Turn Off layer
373Turns off layer state.
374
375 ACTION_LAYER_OFF(layer, on)
376
377Turns off layer state on press and activates on release.
378
379 ACTION_LAYER_OFF_ON(layer)
380
381
382#### 2.2.9 Set layer
383Turn on layer only.
384`layer_state = (1<<layer) [layer: 0-31]`
385
386 ACTION_LAYER_SET(layer, on)
387
388Turns on layer only and clear all layer on release..
389
390 ACTION_LAYER_SET_CLEAR(layer)
391
392
393#### 2.2.10 Bitwise operation
394
395**part** indicates which part of 32bit layer state(0-7). **bits** is 5-bit value. **on** indicates when the action is executed.
396
397 ACTION_LAYER_BIT_AND(part, bits, on)
398 ACTION_LAYER_BIT_OR(part, bits, on)
399 ACTION_LAYER_BIT_XOR(part, bits, on)
400 ACTION_LAYER_BIT_SET(part, bits, on)
401
402These actions works with parameters as following code.
403
404 uint8_t shift = part*4;
405 uint32_t mask = (bits&0x10) ? ~(0xf<<shift) : 0;
406 uint32_t layer_state = layer_state <bitop> ((bits<<shift)|mask);
407
408
409Default Layer also has bitwise operations, they are executed when key is released.
410
411 ACTION_DEFAULT_LAYER_BIT_AND(part, bits)
412 ACTION_DEFAULT_LAYER_BIT_OR(part, bits)
413 ACTION_DEFAULT_LAYER_BIT_XOR(part, bits)
414 ACTION_DEFAULT_LAYER_BIT_SET(part, bits)
415
416
417
418### 2.3 Macro action
419***TBD***
420
421`Macro` action indicates complex key strokes.
422
423 MACRO( D(LSHIFT), D(D), END )
424 MACRO( U(D), U(LSHIFT), END )
425 MACRO( I(255), T(H), T(E), T(L), T(L), W(255), T(O), END )
426
427#### 2.3.1 Macro Commands
428- **I()** change interval of stroke.
429- **D()** press key
430- **U()** release key
431- **T()** type key(press and release)
432- **W()** wait
433- **END** end mark
434
435#### 2.3.2 Examples
436
437***TODO: sample implementation***
438See `keyboards/hhkb/keymap.c` for sample.
439
440
441
442### 2.4 Function action
443***TBD***
444
445There are two type of action, normal `Function` and tappable `Function`.
446These actions call user defined function with `id`, `opt`, and key event information as arguments.
447
448#### 2.4.1 Function
449To define normal `Function` action in keymap use this.
450
451 ACTION_FUNCTION(id, opt)
452
453#### 2.4.2 Function with tap
454To define tappable `Function` action in keymap use this.
455
456 ACTION_FUNCTION_TAP(id, opt)
457
458#### 2.4.3 Implement user function
459`Function` actions can be defined freely with C by user in callback function:
460
461 void keymap_call_function(keyrecord_t *event, uint8_t id, uint8_t opt)
462
463This C function is called every time key is operated, argument `id` selects action to be performed and `opt` can be used for option. Function `id` can be 0-255 and `opt` can be 0-15.
464
465 `keyrecord_t` is comprised of key event and tap count. `keyevent_t` indicates which and when key is pressed or released. From `tap_count` you can know tap state, 0 means no tap. These information will be used in user function to decide how action of key is performed.
466
467 typedef struct {
468 keyevent_t event;
469 uint8_t tap_count;
470 } keyrecord_t;
471
472 typedef struct {
473 key_t key;
474 bool pressed;
475 uint16_t time;
476 } keyevent_t;
477
478 typedef struct {
479 uint8_t col;
480 uint8_t row;
481 } key_t;
482
483***TODO: sample implementation***
484See `keyboards/hhkb/keymap.c` for sample.
485
486
487
488### 2.5 Backlight Action
489These actions control the backlight.
490
491#### 2.5.1 Change backlight level
492Increase backlight level.
493
494 ACTION_BACKLIGHT_INCREASE()
495
496Decrease backlight level.
497
498 ACTION_BACKLIGHT_DECREASE()
499
500Step through backlight levels.
501
502 ACTION_BACKLIGHT_STEP()
503
504Turn a specific backlight level on or off.
505
506 ACTION_BACKLIGHT_LEVEL(1)
507
508#### 2.5.2 Turn on / off backlight
509Turn the backlight on and off without changing level.
510
511 ACTION_BACKLIGHT_TOGGLE()
512
513
514
515### 2.6 Swap-Hands Action
516The swap-hands action allows support for one-handed keyboards without requiring a separate layer. Set `ONEHAND_ENABLE` in the Makefile and define a `hand_swap_config` entry in your keymap. Now whenever the `ACTION_SWAP_HANDS` command key is pressed the keyboard is mirrored. For instance, to type "Hello, World" on QWERTY you would type `^Ge^s^s^w^c W^wr^sd`
517
518### 2.6.1 Configuration
519The configuration table is a simple 2-dimensional array to map from column/row to new column/row. Example `hand_swap_config` for Planck:
520
521```
522const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = {
523 {{11, 0}, {10, 0}, {9, 0}, {8, 0}, {7, 0}, {6, 0}, {5, 0}, {4, 0}, {3, 0}, {2, 0}, {1, 0}, {0, 0}},
524 {{11, 1}, {10, 1}, {9, 1}, {8, 1}, {7, 1}, {6, 1}, {5, 1}, {4, 1}, {3, 1}, {2, 1}, {1, 1}, {0, 1}},
525 {{11, 2}, {10, 2}, {9, 2}, {8, 2}, {7, 2}, {6, 2}, {5, 2}, {4, 2}, {3, 2}, {2, 2}, {1, 2}, {0, 2}},
526 {{11, 3}, {10, 3}, {9, 3}, {8, 3}, {7, 3}, {6, 3}, {5, 3}, {4, 3}, {3, 3}, {2, 3}, {1, 3}, {0, 3}},
527};
528```
529
530Note that the array indices are reversed same as the matrix and the values are of type `keypos_t` which is `{col, row}` and all values are zero-based. In the example above, `hand_swap_config[2][4]` (third row, fifth column) would return {7, 2} (third row, eighth column).
531
532### 2.6.2 Advanced Swap Commands
533- **`ACTION_SWAP_HANDS()`** Swaps hands when pressed, returns to normal when released (momentary).
534- **`ACTION_SWAP_HANDS_TOGGLE()`** Toggles swap on and off with every keypress.
535- **`ACTION_SWAP_HANDS_TAP_TOGGLE()`** Toggles with a tap; momentary when held.
536- **`ACTION_SWAP_HANDS_TAP_KEY(key)`** Sends `key` with a tap; momentary swap when held.
537- **`ACTION_SWAP_HANDS_ON_OFF()`** Alias for `ACTION_SWAP_HANDS()`
538- **`ACTION_SWAP_HANDS_OFF_ON()`** Momentarily turns off swap.
539- **`ACTION_SWAP_HANDS_ON()`** Turns on swapping and leaves it on.
540- **`ACTION_SWAP_HANDS_OFF()`** Turn off swapping and leaves it off. Good for returning to a known state.
541
542
543
544## 3. Layer switching Example
545There are some ways to switch layer with 'Layer' actions.
546
547### 3.1 Momentary switching
548Momentary switching changes layer only while holding Fn key.
549
550This action makes 'Layer 1' active(valid) on key press event and inactive on release event. Namely you can overlay a layer on lower layers or default layer temporarily with this action.
551
552 ACTION_LAYER_MOMENTARY(1)
553
554
555Note that after switching on press the actions on destination layer(Layer 1) are performed.
556***Thus you shall need to place an action to go back on destination layer***, or you will be stuck in destination layer without way to get back. Usually you need to place same action or 'KC_TRNS` on destination layer to get back.
557
558
559### 3.2 Toggle switching
560Toggle switching performed after releasing a key. With this action you can keep staying on the destination layer until you type the key again to return.
561
562This performs toggle switching action of 'Layer 2'.
563
564 ACTION_LAYER_TOGGLE(2)
565
566
567
568### 3.3 Momentary switching with Tap key
569These actions switch a layer only while holding a key but register the key on tap. **Tap** means to press and release a key quickly.
570
571 ACTION_LAYER_TAP_KEY(2, KC_SCLN)
572
573With this you can place a layer switching action on normal key like ';' without losing its original key register function. This action allows you to have layer switching action without necessity of a dedicated key. It means you can have it even on home row of keyboard.
574
575
576
577### 3.4 Momentary switching with Tap Toggle
578This switches layer only while holding a key but toggle layer with several taps. **Tap** means to press and release key quickly.
579
580 ACTION_LAYER_TAP_TOGGLE(1)
581
582Number of taps can be configured with `TAPPING_TOGGLE` in `config.h`, `5` by default.
583
584
585
586### 3.5 Momentary switching with Modifiers
587This registers modifier key(s) simultaneously with layer switching.
588
589 ACTION_LAYER_MODS(2, MOD_LSFT | MOD_LALT)
590
591
592
593## 4. Tapping
594Tapping is to press and release a key quickly. Tapping speed is determined with setting of `TAPPING_TERM`, which can be defined in `config.h`, 200ms by default.
595
596### 4.1 Tap Key
597This is a feature to assign normal key action and modifier including layer switching to just same one physical key. This is a kind of [Dual role key][dual_role]. It works as modifier when holding the key but registers normal key when tapping.
598
599Modifier with tap key:
600
601 ACTION_MODS_TAP_KEY(MOD_RSFT, KC_GRV)
602
603Layer switching with tap key:
604
605 ACTION_LAYER_TAP_KEY(2, KC_SCLN)
606
607[dual_role]: http://en.wikipedia.org/wiki/Modifier_key#Dual-role_keys
608
609When user hold a key after tap, it repeat the tapped key rather to hold a modifier key.
610If you prefer to hold a modifier instead, define `TAPPING_FORCE_HOLD` in `config.h`.
611See https://github.com/qmk/qmk_firmware/issues/889 for the detail.
612
613### 4.2 Tap Toggle
614This is a feature to assign both toggle layer and momentary switch layer action to just same one physical key. It works as momentary layer switch when holding a key but toggle switch with several taps.
615
616 ACTION_LAYER_TAP_TOGGLE(1)
617
618
619### 4.3 Oneshot Modifier
620This runs onetime effects which modify only on just one following key. It works as normal modifier key when holding down while oneshot modifier when tapping. The behavior of oneshot modifiers is similar to the [sticky keys](https://en.wikipedia.org/wiki/StickyKeys) functionality found in most operating systems.
621
622 ACTION_MODS_ONESHOT(MOD_LSFT)
623
624Oneshot layer key:
625
626 ACTION_LAYER_ONESHOT(MY_LAYER)
627
628Say you want to type 'The', you have to push and hold Shift key before type 't' then release it before type 'h' and 'e', otherwise you'll get 'THe' or 'the' unintentionally. With Oneshot Modifier you can tap Shift then type 't', 'h' and 'e' normally, you don't need to holding Shift key properly here. This mean you can release Shift before 't' is pressed down.
629
630Oneshot effect is cancel unless following key is pressed down within `ONESHOT_TIMEOUT` of `config.h`. No timeout when it is `0` or not defined.
631
632Most implementations of sticky keys allow you to lock a modifier by double tapping the modifier. The layer then remains locked untill the modifier is tapped again. To enable this behaviour for oneshot modifiers set `ONESHOT_TAP_TOGGLE` to the number taps required. The feature is disabled if `ONESHOT_TAP_TOGGLE<2` or not defined.
633
634
635### 4.4 Tap Toggle Mods
636Similar to layer tap toggle, this works as a momentary modifier when holding, but toggles on with several taps. A single tap will 'unstick' the modifier again.
637
638 ACTION_MODS_TAP_TOGGLE(MOD_LSFT)
639
640
641
642
643## 5. Legacy Keymap
644In QMK, `tmk_core/common/keymap.c` is missing and its replacement `quantum/keymap_common.c` lacks Legacy Keymap support.
645
646Legacy Keymap uses two arrays `fn_layer[]` and `fn_keycode[]` to define Fn key. The index of arrays corresponds with postfix number of `Fn` key. Array `fn_layer[]` indicates destination layer to switch and `fn_keycode[]` has keycodes to send when tapping `Fn` key.
647
648In the following legacy keymap setting example, `Fn0`, `Fn1` and `Fn2` switch layer to 1, 2 and 2 respectively. `Fn2` registers `Space` key when tapping while `Fn0` and `Fn1` doesn't send any key.
649
650 static const uint8_t PROGMEM fn_layer[] = {
651 1, // Fn0
652 2, // Fn1
653 2, // Fn2
654 };
655
656 static const uint8_t PROGMEM fn_keycode[] = {
657 KC_NO, // Fn0
658 KC_NO, // Fn1
659 KC_SPC, // Fn2
660 };
661
662Under QMK, these can be realized using action code ACTION_LAYER_TAP_KEY(1, KC_NO), ACTION_LAYER_TAP_KEY(2, KC_NO), and ACTION_LAYER_TAP_KEY(2, KC_SPC) in the `keymaps` directly.
663
664## 6. Terminology
665***TBD***
666### keymap
667is comprised of multiple layers.
668### layer
669is matrix of keycodes.
670### key
671is physical button on keyboard or logical switch on software.
672### keycode
673is codes used on firmware.
674### action
675is a function assigned on a key.
676### layer transparency
677Using transparent keycode one layer can refer key definition on other lower layer.
678### layer precedence
679Top layer has higher precedence than lower layers.
680### tapping
681is to press and release a key quickly.
682### Fn key
683is key which executes a special action like layer switching, mouse key, macro or etc.
684### dual role key
685<http://en.wikipedia.org/wiki/Modifier_key#Dual-role_keys>
diff --git a/docs/kiibohd.asciidoc b/docs/kiibohd.asciidoc
deleted file mode 100644
index 4a7ee64d8..000000000
--- a/docs/kiibohd.asciidoc
+++ /dev/null
@@ -1,29 +0,0 @@
1== KLL vs TMK
21. **Shift** = Memontary
31. Latch = One shot
41. Lock = Toggle
5
6## KLL terminology
7### Fall-through
8When a key is undefined on a particular layer, the key
9definition on the previously stacked layer will be used. Eventually
10the key definition will be set to using the default layer. If the None
11keyword is used, then the fall-through will stop and no action will
12take place.
13###Latch
14When referring to keyboards, a key function that is only enabled
15until the release of the next keypress.
16###Lock
17When referring to keyboards, a key function that is enabled until
18that key is pressed again (e.g. Caps Lock).
19### NKRO
20N-Key Rollover is the capability to press N number of keys at the
21same time on a keyboard and have them all register on the OS simultaneously.
22### Scan Code
23Row x Column code or native protocol code used by the keyboard.
24### Shift
25When referring to keyboards, a key function that is enabled while
26that key is held.
27### USB Code
28Keyboard Press/Release codes as defined by the USB HID
29Spec. \ No newline at end of file
diff --git a/docs/license_clarification.md b/docs/license_clarification.md
deleted file mode 100644
index cf30619b9..000000000
--- a/docs/license_clarification.md
+++ /dev/null
@@ -1,38 +0,0 @@
1# Overview
2
3As raised in #1038 and other issues, the licensing status of QMK is not clear. In an effort to remove ambiguity and to clarify the licensing status of the quantum code we are identifying the providence of our source code files and clarifying what license applies to each one.
4
5# Signoff
6
7This section documents the people who need to sign off on applying the GPL to one or more of their contributions. If your name appears below and you consent to applying the GPL to your contributions, please put today's date in the last field of your row. Please stick to the following date format: 2017 Jan 28
8
9Username | Files | Sign Off Date |
10---------|-------|---------------|
11@0xdec | quantum/rgblight.c | 2017 Jan 29 |
12@algernon | quantum/quantum.c<br>quantum/quantum.h<br>quantum/process_keycode/process_tap_dance.c<br>quantum/process_keycode/process_tap_dance.h<br>quantum/process_keycode/process_unicode.c<br>quantum/process_keycode/process_unicode.h | 2017 Jan 29 |
13@cdlm | quantum/template/template.c<br>quantum/template/template.h | 2017 Feb 03 |
14@DidierLoiseau | quantum/keymap_extras/keymap_canadian_multilingual.h<br>quantum/keymap_extras/keymap_bepo.h |2017 Jan 29 |
15@eltang | quantum/config_common.h<br>quantum/matrix.c<br>quantum/quantum.c<br>quantum/quantum.h<br>quantum/rgblight.c<br>quantum/rgblight.h<br>quantum/template/config.h | 2017 Feb 28 |
16@ezuk | quantum/matrix.c<br>quantum/quantum.c<br>quantum/quantum.h<br>quantum/quantum_keycodes.h<br>quantum/rgblight.c<br>quantum/rgblight.h<br>quantum/keymap_extras/keymap_colemak.h<br>quantum/keymap_extras/keymap_nordic.h | 2017 Jan 31 |
17@fredizzimo | quantum/config_common.h<br>quantum/keycode_config.h<br>quantum/keymap.h<br>quantum/keymap_common.c<br>quantum/keymap_common.c<br>quantum/matrix.c<br>quantum/quantum.h<br>quantum/rgblight.c<br>quantum/rgblight.h<br>quantum/api/api_sysex.c | 2017 Jan 29 |
18@h-youhei | quantum/keymap_extras/keymap_jp.h | 2017 Jan 28 |
19@heartsekai | quantum/keymap_extras/keymap_german_ch.h | 2017 Jan 29 |
20@IBnobody | quantum/keycode_config.h<br>quantum/matrix.c<br>quantum/quantum.c<br>quantum/audio/audio.c<br>quantum/audio/audio.h<br>quantum/audio/audio_pwm.c<br>quantum/audio/audio_pwm.c<br>quantum/audio/voices.c<br>quantum/audio/voices.h<br>quantum/template/config.h<br>quantum/template/template.c | 2017 Jan 30 |
21@jackhumbert | quantum/config_common.h<br>quantum/keycode_config.h<br>quantum/keymap.h<br>quantum/keymap_common.c<br>quantum/light_ws2812.c<br>quantum/light_ws2812.h<br>quantum/matrix.c<br>quantum/quantum.c<br>quantum/quantum.h<br>quantum/quantum_keycodes.h<br>quantum/rgblight.c<br>quantum/rgblight.h<br>quantum/api/api_sysex.c<br>quantum/audio/audio.c<br>quantum/audio/audio.h<br>quantum/audio/audio_pwm.c<br>quantum/audio/audio_pwm.c<br>quantum/audio/voices.c<br>quantum/audio/voices.h<br>quantum/keymap_extras/keymap_colemak.h<br>quantum/keymap_extras/keymap_dvorak.h<br>quantum/keymap_extras/keymap_fr_ch.h<br>quantum/keymap_extras/keymap_french.h<br>quantum/keymap_extras/keymap_french_osx.h<br>quantum/keymap_extras/keymap_german.h<br>quantum/keymap_extras/keymap_german_ch.h<br>quantum/keymap_extras/keymap_german_osx.h<br>quantum/keymap_extras/keymap_neo2.h<br>quantum/keymap_extras/keymap_nordic.h<br>quantum/keymap_extras/keymap_plover.h<br>quantum/keymap_extras/keymap_spanish.h<br>quantum/keymap_extras/keymap_uk.h<br>quantum/process_keycode/process_midi.c<br>quantum/process_keycode/process_music.c<br>quantum/process_keycode/process_tap_dance.c<br>quantum/process_keycode/process_tap_dance.h<br>quantum/process_keycode/process_unicode.c<br>quantum/process_keycode/process_unicode.h<br>quantum/template/config.h<br>quantum/template/template.c<br>quantum/template/template.h | 2017-01-29 |
22@jakllsch | quantum/keymap_extras/keymap_dvorak.h<br>quantum/keymap_extras/keymap_fr_ch.h<br>quantum/keymap_extras/keymap_french.h<br>quantum/keymap_extras/keymap_german.h<br>quantum/keymap_extras/keymap_german_ch.h<br>quantum/keymap_extras/keymap_nordic.h<br>quantum/keymap_extras/keymap_spanish.h<br>quantum/keymap_extras/keymap_uk.h | 2017 Jan 29 |
23kuel | quantum/keymap_extras/keymap_unicode_cyrillic.h<br>quantum/keymap_extras/keymap_russian.h | |
24@lindhe | quantum/keymap_extras/keymap_nordic.h<br>quantum/keymap_extras/keymap_norwegian.h | 2017 Jan 30 |
25@matzebond | quantum/keymap_extras/keymap_german.h<br>quantum/keymap_extras/keymap_neo2.h | 2017 Jan 30 |
26@plgruener | quantum/keymap_extras/keymap_german.h<br>quantum/keymap_extras/keymap_neo2.h | 2017 Jan 30 |
27@priyadi | quantum/quantum.c<br>quantum/process_keycode/process_unicode.c<br>quantum/process_keycode/process_unicode.h | 2017 Jan 31 |
28@pvinis | quantum/quantum.c<br>quantum/quantum.h<br>quantum/process_keycode/process_tap_dance.c<br>quantum/process_keycode/process_tap_dance.h | 2017 Jan 29 |
29@Smilliam | quantum/quantum.c | 2017 Feb 25 |
30@sperochon | quantum/keymap_extras/keymap_french_osx.h | 2017 Jan 30 |
31stephan . bosebeck at holidayinsider.com | quantum/keymap_extras/keymap_german_osx.h | 2017 Feb 15 |
32@TerryMathews | quantum/quantum.c | 2017 Jan 29 |
33@Twey | quantum/keymap_extras/keymap_plover.h | |
34@Vifon | quantum/dynamic_macro.h<br>quantum/quantum.c | 2017 Feb 09 |
35@vincent-pochet | quantum/keymap_extras/keymap_fr_ch.h | 2017 Feb 09 |
36@wez | quantum/dynamic_macro.h | 2017 Jan 29 |
37@Wilba6582 | quantum/keymap.h<br>quantum/keymap_common.c<br>quantum/quantum_keycodes.h | 2017 Feb 15 |
38@yangliu | quantum/light_ws2812.c<br>quantum/light_ws2812.h<br>quantum/rgblight.c<br>quantum/rgblight.h | 2017 Jan 30 | \ No newline at end of file
diff --git a/docs/license_clarification_details.md b/docs/license_clarification_details.md
deleted file mode 100644
index 77ee688bb..000000000
--- a/docs/license_clarification_details.md
+++ /dev/null
@@ -1,1272 +0,0 @@
1# Details
2
3This page contains details that are no longer relevant to the License Clarification effort.
4
5## Small Contributions
6
7Smaller contributions that don't need to sign off on the license change.
8
9Username | # Lines | Files |
10---------|---------|-------|
11@AGausmann | 3 | quantum/process_keycode/process_midi.c |
12@Chipairon | 2 | quantum/keymap_extras/keymap_spanish.h |
13@coderkun | 5 | quantum/process_keycode/process_unicode.c |
14@fernandodeperto | 3 | quantum/keymap_extras/keymap_nordic.h |
15@jeebak | 8 | quantum/audio/audio_pwm.c |
16@Keller-Laminar | 1 | quantum/keymap_extras/keymap_dvorak.h |
17kevin at letord.fr | 1 | quantum/keymap_extras/keymap_french.h |
18@ofpies | 3 | quantum/config_common.h<br>quantum/quantum.c |
19@MagicianVivi | 2 | quantum/keymap_extras/keymap_bepo.h |
20@NoahAndrews | 1 | quantum/template/template.h |
21@robertdale | 6 | quantum/process_keycode/process_music.c |
22@scott-t-wilson | 3 | quantum/rgblight.c<br>quantum/rgblight.h |
23@skullydazed | 2 | quantum/rgblight.c |
24@yoyoerx | 6 | quantum/matrix.c<br>quantum/template/template.c |
25
26# Single Author Files
27
28These are the single author files that still need to have their license clarified.
29
30* quantum/dynamic_macro.h: @Vifon
31* quantum/pincontrol.h: @wez
32* quantum/keymap_extras/keymap_canadian_multilingual.h: @DidierLoiseau
33* quantum/keymap_extras/keymap_jp.h: @h-youhei
34* quantum/keymap_extras/keymap_unicode_cyrillic.h: @kuel
35* quantum/keymap_extras/keymap_russian.h: @kuel
36
37# Multi Author Files
38
39Each file listed below has more than one author and needs to have copyright resolved. The number of lines contributed by each author is shown as determined by:
40
41```git blame <file> | cut -f 2 -d '(' | cut -f 1 -d '2' | sort | uniq -c | sed 's/^ */* /'```
42
43## quantum/config_common.h
44
45* 24 Eric Tang
46* 2 Fred Sundvik
47* 58 Jack Humbert
48* 1 ofples
49
50## quantum/keycode_config.h
51
52* 5 IBNobody
53* 20 Jack Humbert
54* 1 fredizzimo
55
56## quantum/keymap.h
57
58* 39 Jack Humbert
59* 6 Wilba6582
60* 8 fredizzimo
61
62## quantum/keymap_common.c
63
64* 1 Fred Sundvik
65* 162 Jack Humbert
66* 11 Wilba6582
67* 3 fredizzimo
68
69## quantum/light_ws2812.c
70
71* 163 Jack Humbert
72* 168 Yang Liu
73
74## quantum/light_ws2812.h
75
76* 11 Jack Humbert
77* 70 Yang Liu
78
79## quantum/matrix.c
80
81* 3 Erez Zukerman
82* 15 Eric Tang
83* 239 IBNobody
84* 152 Jack Humbert
85* 2 fredizzimo
86* 2 yoyoerx
87
88## quantum/quantum.c
89
90* 38 Erez Zukerman
91* 96 Eric Tang
92* 49 Gergely Nagy
93* 68 IBNobody
94* 4 Jack & Erez
95* 561 Jack Humbert
96* 2 Ofer Plesser
97* 14 Pavlos Vinieratos
98* 2 Priyadi Iman Nurcahyo
99* 12 Smilliam
100* 52 TerryMathews
101* 12 Wojciech Siewierski
102
103## quantum/quantum.h
104
105* 23 Erez Zukerman
106* 4 Eric Tang
107* 1 Fred Sundvik
108* 3 Gergely Nagy
109* 86 Jack Humbert
110* 2 Pavlos Vinieratos
111* 5 fredizzimo
112
113## quantum/quantum_keycodes.h
114
115* 2 Erez Zukerman
116* 2 Jack Humbert
117* 313 Wilba6582
118
119## quantum/rgblight.c
120
121* 13 Erez Zukerman
122* 5 Eric Tang
123* 39 Fred Sundvik
124* 101 Jack Humbert
125* 311 Jordi Orlando
126* 1 Scott Wilson
127* 147 Yang Liu
128* 2 skullY
129
130## quantum/rgblight.h
131
132* 3 Erez Zukerman
133* 2 Eric Tang
134* 6 Fred Sundvik
135* 12 Jack Humbert
136* 2 Scott Wilson
137* 80 Yang Liu
138
139## quantum/api/api_sysex.c
140
141* 44 Fred Sundvik
142* 13 Jack Humbert
143
144## quantum/audio/audio.c
145
146* 318 IBNobody
147* 164 Jack Humbert
148
149## quantum/audio/audio.h
150
151* 15 IBNobody
152* 76 Jack Humbert
153
154## quantum/audio/audio_pwm.c
155
156* 642 IBNobody
157* 1 Jack Humbert
158
159## quantum/audio/song_list.h
160
161* 101 IBNobody
162* 16 Jack Humbert
163* 8 JeeBak Kim
164
165## quantum/audio/voices.c
166
167* 24 IBNobody
168* 256 Jack Humbert
169
170## quantum/audio/voices.h
171
172* 3 IBNobody
173* 32 Jack Humbert
174
175## quantum/keymap_extras/keymap_bepo.h
176
177* 308 Didier Loiseau
178* 1 Jack Humbert
179* 2 Vivien Alger
180
181## quantum/keymap_extras/keymap_colemak.h
182
183* 31 Erez Zukerman
184* 44 Jack Humbert
185
186## quantum/keymap_extras/keymap_dvorak.h
187
188* 69 Jack Humbert
189* 15 Jonathan A. Kollasch
190* 1 Keller-Laminar
191
192## quantum/keymap_extras/keymap_fr_ch.h
193
194* 1 Jack Humbert
195* 1 Jonathan A. Kollasch
196* 96 Vincent Pochet
197
198## quantum/keymap_extras/keymap_french.h
199
200* 80 Jack Humbert
201* 2 Jonathan A. Kollasch
202* 1 Kévin Letord
203
204## quantum/keymap_extras/keymap_french_osx.h
205
206* 1 Jack Humbert
207* 76 Sébastien Pérochon
208
209## quantum/keymap_extras/keymap_german.h
210
211* 1 Jack Humbert
212* 1 Jonathan A. Kollasch
213* 58 Matthias Schmitt
214* 39 plgruener
215
216## quantum/keymap_extras/keymap_german_ch.h
217
218* 1 Jack Humbert
219* 1 Jonathan A. Kollasch
220* 100 heartsekai
221
222## quantum/keymap_extras/keymap_german_osx.h
223
224* 1 Jack Humbert
225* 96 Stephan Bösebeck
226
227## quantum/keymap_extras/keymap_neo2.h
228
229* 2 Jack Humbert
230* 42 Matthias Schmitt
231* 19 plgruener
232
233## quantum/keymap_extras/keymap_nordic.h
234
235* 1 Andreas Lindhé
236* 1 Erez Zukerman
237* 3 Fernando Mendonca
238* 53 Jack Humbert
239* 1 Jonathan A. Kollasch
240
241## quantum/keymap_extras/keymap_norwegian.h
242
243* 1 Andreas Lindhé
244* 40 joar
245
246## quantum/keymap_extras/keymap_plover.h
247
248* 1 Jack Humbert
249* 31 James ‘Twey’ Kay
250
251## quantum/keymap_extras/keymap_spanish.h
252
253* 59 Jack Humbert
254* 1 Jonathan A. Kollasch
255* 2 Rubén Díaz-Jorge
256
257## quantum/keymap_extras/keymap_uk.h
258
259* 34 Jack Humbert
260* 2 Jonathan A. Kollasch
261
262## quantum/process_keycode/process_midi.c
263
264* 3 Adam Gausmann
265* 65 Jack Humbert
266
267## quantum/process_keycode/process_music.c
268
269* 180 Jack Humbert
270* 6 Robert Dale
271
272## quantum/process_keycode/process_tap_dance.c
273
274* 90 Gergely Nagy
275* 38 Jack Humbert
276* 8 Pavlos Vinieratos
277
278## quantum/process_keycode/process_tap_dance.h
279
280* 22 Gergely Nagy
281* 41 Jack Humbert
282* 9 Pavlos Vinieratos
283
284## quantum/process_keycode/process_unicode.c
285
286* 176 Gergely Nagy
287* 24 Jack Humbert
288* 84 Priyadi Iman Nurcahyo
289* 5 coderkun
290
291## quantum/process_keycode/process_unicode.h
292
293* 40 Gergely Nagy
294* 117 Jack Humbert
295* 10 Priyadi Iman Nurcahyo
296
297## quantum/template/config.h
298
299* 9 Eric Tang
300* 78 IBNobody
301* 75 Jack Humbert
302
303## quantum/template/template.c
304
305* 9 Damien Pollet
306* 7 IBNobody
307* 8 Jack Humbert
308* 4 yoyoerx
309
310## quantum/template/template.h
311
312* 2 Damien Pollet
313* 16 Jack Humbert
314* 1 Noah Andrews
315
316# All Single Author Files
317
318These files have only a single author and so clarifying licensing should be pretty straightforward.
319
320* quantum/analog.c: Jack Humbert
321* quantum/analog.h: Jack Humbert
322* quantum/api.h: Jack Humbert
323* quantum/keycode_config.c: Jack Humbert
324* quantum/pincontrol.h: Wez Furlong
325* quantum/api/api_sysex.h: Jack Humbert
326* quantum/audio/luts.c: IBNobody
327* quantum/audio/luts.h: IBNobody
328* quantum/audio/musical_notes.h: Jack Humbert
329* quantum/audio/wave.h: Jack Humbert
330* quantum/keymap_extras/keymap_br_abnt2.h: Potiguar Faga
331* quantum/keymap_extras/keymap_dvp.h: Artyom Mironov
332* quantum/keymap_extras/keymap_jp.h: h-youhei
333* quantum/keymap_extras/keymap_unicode_cyrillic.h: kuel
334* quantum/process_keycode/process_chording.c: Jack Humbert
335* quantum/process_keycode/process_chording.h: Jack Humbert
336* quantum/process_keycode/process_leader.c: Jack Humbert
337* quantum/process_keycode/process_leader.h: Jack Humbert
338* quantum/process_keycode/process_midi.h: Jack Humbert
339* quantum/process_keycode/process_music.h: Jack Humbert
340* quantum/process_keycode/process_printer.c: Jack Humbert
341* quantum/process_keycode/process_printer.h: Jack Humbert
342* quantum/process_keycode/process_printer_bb.c: Jack Humbert
343* quantum/serial_link/LICENSE: Fred Sundvik
344* quantum/serial_link/protocol/frame_router.c: Fred Sundvik
345* quantum/serial_link/protocol/frame_router.h: Fred Sundvik
346* quantum/serial_link/protocol/frame_validator.c: Fred Sundvik
347* quantum/serial_link/protocol/frame_validator.h: Fred Sundvik
348* quantum/serial_link/protocol/physical.h: Fred Sundvik
349* quantum/serial_link/protocol/triple_buffered_object.c: Fred Sundvik
350* quantum/serial_link/protocol/triple_buffered_object.h: Fred Sundvik
351* quantum/serial_link/system/serial_link.c: Fred Sundvik
352* quantum/serial_link/system/serial_link.h: Fred Sundvik
353* quantum/serial_link/tests/byte_stuffer_tests.cpp: Fred Sundvik
354* quantum/serial_link/tests/frame_router_tests.cpp: Fred Sundvik
355* quantum/serial_link/tests/frame_validator_tests.cpp: Fred Sundvik
356* quantum/serial_link/tests/Makefile: Fred Sundvik
357* quantum/serial_link/tests/transport_tests.cpp: Fred Sundvik
358* quantum/serial_link/tests/triple_buffered_object_tests.cpp: Fred Sundvik
359* quantum/template/rules.mk: Fred Sundvik
360* quantum/template/keymaps/default/config.h: Jack Humbert
361* quantum/template/keymaps/default/Makefile: Jack Humbert
362* quantum/template/keymaps/default/readme.md: Jack Humbert
363* quantum/tools/eeprom_reset.hex: Jack Humbert
364* quantum/tools/readme.md: Jack Humbert
365* quantum/visualizer/lcd_backlight.c: Fred Sundvik
366* quantum/visualizer/lcd_backlight.h: Fred Sundvik
367* quantum/visualizer/led_test.h: Fred Sundvik
368* quantum/visualizer/LICENSE.md: Fred Sundvik
369* quantum/visualizer/readme.md: Fred Sundvik
370* quantum/visualizer/example_integration/callbacks.c: Fred Sundvik
371* quantum/visualizer/example_integration/gfxconf.h: Fred Sundvik
372* quantum/visualizer/example_integration/lcd_backlight_hal.c: Fred Sundvik
373* quantum/visualizer/example_integration/visualizer_user.c: Fred Sundvik
374
375# All Files
376
377## quantum/analog.c
378
379* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
380
381## quantum/analog.h
382
383* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
384
385## quantum/api.c
386
387* 7edac212c8ed8442bf4207e70dc8194631b2bf27 Sat Nov 26 15:37:46 2016 -0500 Jack Humbert
388* 06c64bbff3e228df542149acde64eadaf59b9b0f Mon Dec 19 11:18:18 2016 -0500 Jack Humbert
389
390## quantum/api.h
391
392* 7edac212c8ed8442bf4207e70dc8194631b2bf27 Sat Nov 26 15:37:46 2016 -0500 Jack Humbert
393
394## quantum/config_common.h
395
396* 35a81f5b8b081e1607a7c04489b01f551c3213cc Mon Oct 26 16:32:37 2015 -0400 Jack Humbert
397* aaa758f1d3f97dda39879f2b055ad2da9680adfe Mon May 23 20:42:21 2016 -0700 Eric Tang
398* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
399* 705c775a4a433249081321cea0c2def2627817dc Sun Aug 21 22:05:55 2016 -0500 IBNobody
400* 936a26d04ffa12801031c058f27e221174e3fabd Thu Aug 25 00:15:41 2016 -0500 IBNobody
401* 6390033e8688550826a4bd3004a2e76568600657 Mon Nov 21 20:14:16 2016 -0500 Jack Humbert
402* 03d6e165bb0baf9d0093250d3c3c0771290df4d6 Fri Nov 25 09:17:40 2016 +0200 ofples
403* 0c9d66eb59add717397ba83d508577073412ce86 Fri Nov 25 09:20:41 2016 +0200 ofples
404* de1df639535817e17f1c01f07e7a629cec478526 Sat Nov 26 13:55:41 2016 +0700 Priyadi Iman Nurcahyo
405* 17acde94ee2695ab69ea336742c904d649dce17c Sat Nov 26 14:02:38 2016 +0700 Priyadi Iman Nurcahyo
406* d9d67e7b7686fdcbc7269a76d2a54c42325bdd03 Sat Nov 26 15:26:02 2016 +0700 Priyadi Iman Nurcahyo
407* f2214ce1cb6cfe7a0efabe870a2c00fb8451ee80 Sat Nov 26 15:57:48 2016 +0700 Priyadi Iman Nurcahyo
408* 6e0f994950435aa5867e7b7ce780186d881d74ac Mon Nov 28 23:51:07 2016 -0500 Jack Humbert
409* dd685eceb2045371d38f24d454f1ab08ca7416f4 Thu Dec 29 12:13:30 2016 +0200 Fred Sundvik
410
411## quantum/dynamic_macro.h
412
413* 39e8e61258b51a2c33a94dd877e983f0b1dae0c1 Thu Aug 18 01:37:13 2016 +0200 Wojciech Siewierski
414* 70f32842e5d94f14d05c1f9adcb1b1144a25a132 Sun Oct 9 12:52:39 2016 +0200 Wojciech Siewierski
415
416## quantum/keycode_config.c
417
418* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
419
420## quantum/keycode_config.h
421
422* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
423* 4d4f7684e684bec319f166121463a88cd4a62703 Fri Jul 1 17:04:53 2016 +0300 fredizzimo
424* 558f3ec1eb325caf706efc15e2fab26121aba442 Tue Sep 6 23:19:01 2016 -0500 IBNobody
425
426## quantum/keymap.h
427
428* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
429* 76076db72545bbb649f11394a12721f61579527f Mon Jun 20 22:36:36 2016 -0400 Jack & Erez
430* 1a0bac8bccf0e156d2f3c5f14a7214f9677b6370 Tue Jun 21 17:42:29 2016 -0400 Jack Humbert
431* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
432* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
433* 4d4f7684e684bec319f166121463a88cd4a62703 Fri Jul 1 17:04:53 2016 +0300 fredizzimo
434* 50c686587ed49d8079ba1b11d45ceb6a55d6cd4b Thu Jul 7 23:34:33 2016 -0400 TerryMathews
435* e692ebf86a962e90c51302e7b17a953ea2858f79 Fri Aug 12 20:38:26 2016 +0900 shela
436* 558f3ec1eb325caf706efc15e2fab26121aba442 Tue Sep 6 23:19:01 2016 -0500 IBNobody
437* 1048a588c750e27ff0f900cd6aaf670e034086d0 Fri Oct 7 17:15:11 2016 +0200 npoirey
438* 5b2e455d3b71bfb90754930d1f22d3e8ce98b927 Mon Oct 10 00:46:20 2016 +0700 Priyadi Iman Nurcahyo
439* e27a754b70434de88a37c4a572e4ca5f7730ff58 Wed Oct 12 22:18:27 2016 -0400 Jack & Erez
440* 52d7f7d2770a35adf0b0b0c803e05ae8719f539f Sun Oct 16 15:49:45 2016 -0400 Jack Humbert
441* 5f91fb413624781ac79db641549b9e08753c04b5 Sun Oct 16 16:03:33 2016 -0400 Jack Humbert
442* 33e62c080c9161a0fc921c90ed299a67fc2e1799 Sat Nov 12 20:54:37 2016 -0500 Jack Humbert
443* 01038ab54ca6c2858ea9e856c717a1129ffe4156 Fri Dec 23 21:51:11 2016 +0200 Ofer Plesser
444* d8a608f3ff4cb4d73cd57be500fd9881e230099d Thu Dec 29 18:28:48 2016 +1100 Wilba6582
445
446## quantum/keymap_common.c
447
448* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
449* 35a81f5b8b081e1607a7c04489b01f551c3213cc Mon Oct 26 16:32:37 2015 -0400 Jack Humbert
450* cc1c32671eb1eb43a87e55ac4ffa60b15115e48d Mon Oct 26 20:02:25 2015 -0400 Jack Humbert
451* d9f08e6177271594fa573993d9f4dbc2d98c7416 Tue Oct 27 22:00:52 2015 -0400 Jack Humbert
452* 18da1e6801335b0d9515ab72e9236a01d629915f Tue Oct 27 23:06:18 2015 -0400 Jack Humbert
453* d3db8d62f6fc6a7dee43978ddc8356579b502b37 Wed Oct 28 04:07:15 2015 +0200 Erez Zukerman
454* 7d6716beded4a60cd9de24e95d8ec60694692b6f Fri Jan 29 23:27:36 2016 -0500 Jack Humbert
455* 65b41e2e59e274354e57ed36cad097823f111f1a Sun Feb 7 11:48:28 2016 +0100 Wojciech Siewierski
456* 47dcec29456106828b83fe5b85fa7a7427ddc710 Sun Jan 3 17:49:28 2016 -0500 Chris Gerber
457* 1d13aa933bbb57bf0c1fe0196981b81233c3df97 Mon Mar 28 19:45:20 2016 -0500 IBNobody
458* 3755ef5ddbdad9f25a53fee951c3eb78035b52c3 Wed Apr 13 20:57:51 2016 -0500 IBNobody
459* ee2ee7f4f049dda385a9db7dddd8e7e91681315b Fri Apr 15 13:44:07 2016 -0400 Jack Humbert
460* 9cfc74c35b940884618b0fe1e6fd25c570e1c974 Thu Apr 7 15:21:06 2016 +0300 Erez Zukerman
461* ab19ebd08a8b955775e6fa94cdf6b8d128d8b43c Sat Apr 16 18:51:58 2016 -0400 Jack Humbert
462* c83aa16f1d614c1c10f7597a67ffb9f2ae871951 Sat Apr 16 20:26:02 2016 -0400 Jack Humbert
463* 41cc35425ab32c9a9492006da8b667d01d32dfa6 Sat Apr 16 21:31:40 2016 -0400 Jack Humbert
464* 8bbd064cf52a76508589579f19595607a1f3af21 Sat Apr 16 23:07:50 2016 -0400 Jack Humbert
465* 45f10b4c4b308226fa1568277654a13853a03ab4 Sat Apr 16 22:10:18 2016 -0500 IBNobody
466* e7b9959819e709d7df2e96a94bdaf36e4e9e23e3 Sat Apr 16 23:15:40 2016 -0400 Jack Humbert
467* a67d425f4d5278595e7ab785a0f246b83fb1a09f Sun Apr 17 01:00:39 2016 -0400 Jack Humbert
468* d5b72e7bde5ede25f7d5699b50b7d9eb6f31ba92 Sun Apr 17 12:54:32 2016 -0500 IBNobody
469* 3103ea542f0039637a1a266df79a97a7a13fa6b4 Sun Apr 17 12:55:19 2016 -0500 IBNobody
470* 23231fa577f7c6c585124226a83f21a7668e62dd Sun Apr 17 14:16:03 2016 -0500 IBNobody
471* 5c98ad59606ee95b82c27bf2525383a9ec88542b Sun Apr 17 20:14:37 2016 -0500 IBNobody
472* e49712b5593b887c8af18aeb7196513f1c7b7bcf Mon Apr 18 21:01:48 2016 -0400 Jack Humbert
473* 620ac4b260fa663d12b11a0b15ac50379523c125 Thu Apr 21 19:35:18 2016 -0700 Eric Tang
474* 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 Tue May 3 12:56:40 2016 -0500 IBNobody
475* 41b3e399b1d43db9574c6016951d92974b3d93e7 Thu May 5 21:50:51 2016 -0400 Jack Humbert
476* 1a8c0dd22d6a2255511d0db6a456315541b5815b Sun May 15 00:27:32 2016 -0400 Erez Zukerman
477* fde477a927edc6b4207a6968d44aeed021e8b300 Sun May 15 00:51:06 2016 -0400 Jack Humbert
478* b732b79b49b098dba8e14493c745075f336747d8 Wed May 18 23:47:16 2016 -0400 Jack Humbert
479* 287eb7ad148abc8fe3fb014218d71e205fd9131d Tue May 24 11:56:53 2016 -0400 Jack Humbert
480* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
481* 4d4f7684e684bec319f166121463a88cd4a62703 Fri Jul 1 17:04:53 2016 +0300 fredizzimo
482* 9870082a06386eba8c0c5f22da90d0256ef6244b Thu Jul 7 19:48:39 2016 +0300 Fred Sundvik
483* 8b94e26d7c3b30cc57d710a11e5651d15e8e3b20 Sun Jul 24 22:07:43 2016 -0400 Jack Humbert
484* d8a608f3ff4cb4d73cd57be500fd9881e230099d Thu Dec 29 18:28:48 2016 +1100 Wilba6582
485
486## quantum/light_ws2812.c
487
488* ba9ac457b2159097ecfd9848c5171c52e3a68260 Sun Jan 24 17:05:47 2016 -0800 Yang Liu
489* 57e08eb8badc5db2fb44d2df684f32ea48cce411 Thu Jul 7 11:33:32 2016 -0400 Jack Humbert
490* 5f91fb413624781ac79db641549b9e08753c04b5 Sun Oct 16 16:03:33 2016 -0400 Jack Humbert
491* 33e62c080c9161a0fc921c90ed299a67fc2e1799 Sat Nov 12 20:54:37 2016 -0500 Jack Humbert
492* e9f748751808de2f1e85cf7fb670d78773bd5e76 Sun Nov 13 23:02:38 2016 -0500 Jack Humbert
493* 530dd3377e4d409a7ca2fee7e47b60b735ebc0fa Tue Nov 15 13:18:10 2016 -0500 Jack Humbert
494* 3774a7fcdab5544fc787f4c200be05fcd417e31f Thu Nov 17 17:42:14 2016 -0500 Jack Humbert
495
496## quantum/light_ws2812.h
497
498* ba9ac457b2159097ecfd9848c5171c52e3a68260 Sun Jan 24 17:05:47 2016 -0800 Yang Liu
499* 5f91fb413624781ac79db641549b9e08753c04b5 Sun Oct 16 16:03:33 2016 -0400 Jack Humbert
500* e9f748751808de2f1e85cf7fb670d78773bd5e76 Sun Nov 13 23:02:38 2016 -0500 Jack Humbert
501* 664c0a036b3d7c3ed39f4a7a78d97f4a9cc7d20c Mon Nov 21 19:50:55 2016 -0500 Jack Humbert
502* 06c64bbff3e228df542149acde64eadaf59b9b0f Mon Dec 19 11:18:18 2016 -0500 Jack Humbert
503
504## quantum/matrix.c
505
506* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
507* 35a81f5b8b081e1607a7c04489b01f551c3213cc Mon Oct 26 16:32:37 2015 -0400 Jack Humbert
508* 641859df84bf40025b2c14319d1a168a435562e2 Thu Mar 10 11:28:34 2016 -0500 yoyoerx
509* 684793360cdb08ac1e50a6d27e1796fadd527adb Mon May 9 00:36:23 2016 -0400 Jack Humbert
510* 1a8c0dd22d6a2255511d0db6a456315541b5815b Sun May 15 00:27:32 2016 -0400 Erez Zukerman
511* aaa758f1d3f97dda39879f2b055ad2da9680adfe Mon May 23 20:42:21 2016 -0700 Eric Tang
512* 1ae6011cef2230826a9e6db6c5b638677bc640b7 Tue May 24 08:44:40 2016 -0700 Eric Tang
513* de57799530d3184722532f93d156364067d8fcd5 Sat May 28 11:56:06 2016 -0400 Jack Humbert
514* 008c8d54a0a1a1e908d372d0fe9edb45a2d491e5 Fri Jun 17 22:09:59 2016 -0400 Jack Humbert
515* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
516* 215c2119af5281072d5a6efb0308408793cadd08 Wed Jun 29 16:21:41 2016 -0400 Jack Humbert
517* 4d4f7684e684bec319f166121463a88cd4a62703 Fri Jul 1 17:04:53 2016 +0300 fredizzimo
518* 8e88d55bfd7c88cb15845e0c6415e4e892532861 Mon Jul 4 11:45:58 2016 -0400 Jack Humbert
519* 3577e26fd9916ceab58779ec6323d43da54eb3b5 Wed Jul 6 00:24:31 2016 -0400 Jack Humbert
520* 17170ba76d3c94edcf1ab263520238fdb0384774 Sun Oct 23 23:00:43 2016 -0500 IBNobody
521* 508eddf8ba8548d3f71e1c09a404839beb49f45c Fri Oct 28 14:21:38 2016 -0500 IBNobody
522* 4c6960835c0a6e29670dabdc27117d7d3c7f99f5 Fri Oct 28 16:24:20 2016 -0500 IBNobody
523* 32f88c07173b795c6981c779057dceba00aeb1cb Sat Oct 29 10:39:03 2016 -0500 IBNobody
524* f4030289744fc6dc82dd85c955070c0845813cc5 Sat Oct 29 16:12:58 2016 -0500 IBNobody
525* a06115df19a74d39b08758472b221e630c3680d3 Fri Nov 18 23:20:07 2016 -0500 Jack Humbert
526
527## quantum/pincontrol.h
528
529* 8485bb34d2e291db5b6c81f892850da1cdca37ba Sun Nov 27 22:43:11 2016 -0800 Wez Furlong
530
531## quantum/quantum.c
532
533* 1a8c0dd22d6a2255511d0db6a456315541b5815b Sun May 15 00:27:32 2016 -0400 Erez Zukerman
534* 15719f3574c6274ee0f3ec87431927c5a523aa3e Sun May 15 00:40:59 2016 -0400 Jack Humbert
535* bf5c2ccee5497523c214dae7aacdc27fdbb0f235 Sun May 15 00:47:25 2016 -0400 Jack Humbert
536* fde477a927edc6b4207a6968d44aeed021e8b300 Sun May 15 00:51:06 2016 -0400 Jack Humbert
537* 0428214b905e5f8b3bed721885957ce249ba4991 Wed May 18 23:14:00 2016 -0400 Jack Humbert
538* b732b79b49b098dba8e14493c745075f336747d8 Wed May 18 23:47:16 2016 -0400 Jack Humbert
539* 0275d444d77c9d85d2189b09d8813fb76dc4d566 Thu May 19 15:36:28 2016 +0300 purpleP
540* 287eb7ad148abc8fe3fb014218d71e205fd9131d Tue May 24 11:56:53 2016 -0400 Jack Humbert
541* 1237025963484d70bbe5185a790bec6544653ccc Tue May 24 23:27:59 2016 -0400 Erez Zukerman
542* 8bc69afc633d3e199e3ac0a5bf39e4d255f2ce4a Tue May 24 23:48:46 2016 -0400 Erez Zukerman
543* 17977a7e24ddab6ca101341b33c8fe7ad13e68f5 Sat May 28 15:22:30 2016 -0400 Jack Humbert
544* 1c9f33c06a6ef18c9c21e5841180af5ae554c34b Wed Jun 1 22:49:55 2016 -0400 Jack Humbert
545* 4635b4453335b61df11008fa907eef221db5912b Wed Jun 1 23:00:55 2016 -0400 Jack Humbert
546* 794aed37a0da5a277a07e7fa86263e0852fa9f6d Fri Jun 3 12:48:40 2016 -0700 Eric Tang
547* b70248fa2144d297504eedbc80a76dfdc40d9f1f Fri Jun 17 21:42:59 2016 -0400 Jack Humbert
548* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
549* 76076db72545bbb649f11394a12721f61579527f Mon Jun 20 22:36:36 2016 -0400 Jack & Erez
550* 98f0807359cfa78d25442b91ff4c5bbfc5679661 Tue Jun 21 22:55:54 2016 -0400 Jack Humbert
551* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
552* b68b722325e1f0f68387e161365fa8e31c79b7b2 Thu Jun 23 23:14:21 2016 -0400 Jack Humbert
553* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
554* 197f152dee834a737cd820f2a95d1ade98be4898 Wed Jun 29 18:29:20 2016 -0400 Jack Humbert
555* 60fd885a6e540509baa2193932e15caeaeb8f4c5 Wed Jun 29 18:35:29 2016 -0400 Jack Humbert
556* 4d4f7684e684bec319f166121463a88cd4a62703 Fri Jul 1 17:04:53 2016 +0300 fredizzimo
557* 1412076df68ac00f9a00173977d2826603c12ddf Mon Jul 4 19:56:08 2016 -0700 Smilliam
558* 6b0c9cc905c0985f96a80306cf5fe0d6724b28fc Mon Jul 4 19:58:26 2016 -0700 Smilliam
559* a4bf46f9b1d0a0be0cecb2cd0f0d941aa7c71bd3 Wed Jul 6 22:48:19 2016 -0400 Jack Humbert
560* 50c686587ed49d8079ba1b11d45ceb6a55d6cd4b Thu Jul 7 23:34:33 2016 -0400 TerryMathews
561* f7a86822266603b8ffd21e9f89ec1de8d4950791 Fri Jul 8 03:32:28 2016 -0400 TerryMathews
562* b12fe6abb25db1feca6a7649097a8d1cb67a063f Sun Jul 10 19:04:01 2016 -0700 Smilliam
563* a998a48673372e409991066d7d2d9ba282f79d59 Mon Jul 11 09:14:43 2016 -0400 Jack Humbert
564* a28a6e5b79c819e5f9323f62686498eca3ef399f Wed Jul 13 16:38:02 2016 +0200 Pavlos Vinieratos
565* 857aa5bef6a74f8785a7039feea5286c07bf7067 Sat Aug 13 11:14:42 2016 +0200 Gergely Nagy
566* 644c8c79271db8cf1bd934b9a80a0215585e46e7 Thu Aug 18 01:34:05 2016 +0200 Wojciech Siewierski
567* 0d28787c5cf2173d12f57b397515f91cffaa820a Thu Aug 18 11:29:53 2016 +0200 Gergely Nagy
568* e571d4656cd283ce8d793fe3dd2ac176b84b0bf5 Tue Sep 6 18:02:43 2016 -0500 IBNobody
569* 558f3ec1eb325caf706efc15e2fab26121aba442 Tue Sep 6 23:19:01 2016 -0500 IBNobody
570* 5b2e455d3b71bfb90754930d1f22d3e8ce98b927 Mon Oct 10 00:46:20 2016 +0700 Priyadi Iman Nurcahyo
571* 5f91fb413624781ac79db641549b9e08753c04b5 Sun Oct 16 16:03:33 2016 -0400 Jack Humbert
572* 33e62c080c9161a0fc921c90ed299a67fc2e1799 Sat Nov 12 20:54:37 2016 -0500 Jack Humbert
573* e9f748751808de2f1e85cf7fb670d78773bd5e76 Sun Nov 13 23:02:38 2016 -0500 Jack Humbert
574* ffa5b1e7ea6697acf9ebfcade1149031642f7870 Sat Nov 19 11:32:09 2016 +0100 Gergely Nagy
575* 74a1f00713d1407fb1d2e20d58da93919ab0c221 Sat Nov 19 18:19:18 2016 +0100 Gergely Nagy
576* 664c0a036b3d7c3ed39f4a7a78d97f4a9cc7d20c Mon Nov 21 19:50:55 2016 -0500 Jack Humbert
577* 450a8fb5b61de8166fe21eb4f57e1c00514afe32 Mon Nov 21 20:17:45 2016 -0500 Jack Humbert
578* cefa8468fb5f28bd67a0c02d371a4aef0964e20c Wed Nov 23 20:16:38 2016 -0500 Jack Humbert
579* 7edac212c8ed8442bf4207e70dc8194631b2bf27 Sat Nov 26 15:37:46 2016 -0500 Jack Humbert
580* 01038ab54ca6c2858ea9e856c717a1129ffe4156 Fri Dec 23 21:51:11 2016 +0200 Ofer Plesser
581
582## quantum/quantum.h
583
584* 1a8c0dd22d6a2255511d0db6a456315541b5815b Sun May 15 00:27:32 2016 -0400 Erez Zukerman
585* fde477a927edc6b4207a6968d44aeed021e8b300 Sun May 15 00:51:06 2016 -0400 Jack Humbert
586* 0428214b905e5f8b3bed721885957ce249ba4991 Wed May 18 23:14:00 2016 -0400 Jack Humbert
587* b732b79b49b098dba8e14493c745075f336747d8 Wed May 18 23:47:16 2016 -0400 Jack Humbert
588* 287eb7ad148abc8fe3fb014218d71e205fd9131d Tue May 24 11:56:53 2016 -0400 Jack Humbert
589* de57799530d3184722532f93d156364067d8fcd5 Sat May 28 11:56:06 2016 -0400 Jack Humbert
590* 17977a7e24ddab6ca101341b33c8fe7ad13e68f5 Sat May 28 15:22:30 2016 -0400 Jack Humbert
591* 1c9f33c06a6ef18c9c21e5841180af5ae554c34b Wed Jun 1 22:49:55 2016 -0400 Jack Humbert
592* 794aed37a0da5a277a07e7fa86263e0852fa9f6d Fri Jun 3 12:48:40 2016 -0700 Eric Tang
593* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
594* 98f0807359cfa78d25442b91ff4c5bbfc5679661 Tue Jun 21 22:55:54 2016 -0400 Jack Humbert
595* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
596* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
597* 197f152dee834a737cd820f2a95d1ade98be4898 Wed Jun 29 18:29:20 2016 -0400 Jack Humbert
598* 8125cdb88ce1201fcfd16ed4c5313222ef4c230c Wed Jun 29 18:36:52 2016 -0400 Jack Humbert
599* 4d4f7684e684bec319f166121463a88cd4a62703 Fri Jul 1 17:04:53 2016 +0300 fredizzimo
600* a28a6e5b79c819e5f9323f62686498eca3ef399f Wed Jul 13 16:38:02 2016 +0200 Pavlos Vinieratos
601* e01b4c3fd9a7b66276ffd22dcac25d569d7bb7ff Sat Jul 9 00:41:15 2016 +0300 Fred Sundvik
602* 0d28787c5cf2173d12f57b397515f91cffaa820a Thu Aug 18 11:29:53 2016 +0200 Gergely Nagy
603* 5f91fb413624781ac79db641549b9e08753c04b5 Sun Oct 16 16:03:33 2016 -0400 Jack Humbert
604* 664c0a036b3d7c3ed39f4a7a78d97f4a9cc7d20c Mon Nov 21 19:50:55 2016 -0500 Jack Humbert
605* cefa8468fb5f28bd67a0c02d371a4aef0964e20c Wed Nov 23 20:16:38 2016 -0500 Jack Humbert
606* 7edac212c8ed8442bf4207e70dc8194631b2bf27 Sat Nov 26 15:37:46 2016 -0500 Jack Humbert
607
608## quantum/quantum_keycodes.h
609
610* d8a608f3ff4cb4d73cd57be500fd9881e230099d Thu Dec 29 18:28:48 2016 +1100 Wilba6582
611* 8459bb97c1e8bcb9ccce55a1ed849d373bd7706c Wed Jan 11 21:57:41 2017 -0500 Erez Zukerman
612* 3717cf5864d6505e406b5eb75f315e6dc2392912 Thu Jan 12 07:38:07 2017 -0500 Erez Zukerman
613* 7288e5ab9c005a7b035d91e68358aa2b6a12420c Fri Jan 13 14:04:51 2017 -0500 Jack Humbert
614
615## quantum/rgblight.c
616
617* ba9ac457b2159097ecfd9848c5171c52e3a68260 Sun Jan 24 17:05:47 2016 -0800 Yang Liu
618* 2647c7cd84820a833b85e41ea86caf76b36e6ee1 Sun Jan 24 17:19:33 2016 -0800 Yang Liu
619* 97f8f378761506914b69d4fd2d5661bfcae28295 Sun Apr 10 21:16:49 2016 -0700 skullY
620* 620ac4b260fa663d12b11a0b15ac50379523c125 Thu Apr 21 19:35:18 2016 -0700 Eric Tang
621* c37d52d2137acf5739c481cc0c8917ad6fd77161 Tue Apr 26 13:48:36 2016 -0400 Jack Humbert
622* e024c11f7a849a38e478cda9fb9939a838cfa2e0 Tue Apr 26 13:50:04 2016 -0400 Jack Humbert
623* 80c87054193b9243670aeb85adefbe1aa6c0fda0 Tue Jun 21 12:53:21 2016 -0400 Jack Humbert
624* 57e08eb8badc5db2fb44d2df684f32ea48cce411 Thu Jul 7 11:33:32 2016 -0400 Jack Humbert
625* 3a860c4bc210857f03ef9fae5043d6d5736d140d Tue Jul 26 14:43:45 2016 -0500 Jordi Orlando
626* 899c88cd8bf024792760fcf3ee8be6fed13fb315 Tue Jul 26 14:46:30 2016 -0500 Jordi Orlando
627* ea2d2f5d5841791745c93ef27cd1528a7fd69c97 Tue Jul 26 15:31:22 2016 -0500 Jordi Orlando
628* b8679bbe045a2285d6ab6bbc420121b26f516b9a Wed Oct 5 20:41:33 2016 -0400 Jack Humbert
629* 9b0e21f87f446935f29254bb623c2cfe29472b6e Sun Oct 9 19:26:16 2016 +0300 Fred Sundvik
630* 92a3a96849aee708753a6623b0db228023e3baf8 Sun Oct 9 19:47:05 2016 +0300 Fred Sundvik
631* ffae9d84c5279b463da112ee15568d536649b819 Sun Oct 9 19:53:41 2016 +0300 Fred Sundvik
632* 03b6fcdaf034392e27752a9bd2c11de06a166e39 Mon Oct 10 00:20:24 2016 -0400 Jack Humbert
633* 33e62c080c9161a0fc921c90ed299a67fc2e1799 Sat Nov 12 20:54:37 2016 -0500 Jack Humbert
634* e9f748751808de2f1e85cf7fb670d78773bd5e76 Sun Nov 13 23:02:38 2016 -0500 Jack Humbert
635* 3774a7fcdab5544fc787f4c200be05fcd417e31f Thu Nov 17 17:42:14 2016 -0500 Jack Humbert
636* 285c5a91f23e972d9c579184283443111186329d Thu Nov 17 20:56:36 2016 -0500 Erez Zukerman
637* 2e23689b8e3222982082c1f5a4f8ce7686f9658b Wed Nov 23 18:52:02 2016 -0500 Jack Humbert
638* 4094544d41450617bc21ab58646603b8964eae0e Tue Nov 29 09:23:16 2016 -0500 Erez Zukerman
639* cae269b08b642b07ee06dec7120a784a3c3d7aab Fri Dec 23 10:29:19 2016 -0500 Jack Humbert
640* 748181dccddb8c9fa52a776f4fcd904ddca9aa31 Wed Dec 28 16:29:02 2016 -0500 Scott Wilson
641* b8e74c378b1f118178edf0634d9fa7f0f9dd5e08 Thu Dec 29 09:32:02 2016 -0500 Scott Wilson
642
643## quantum/rgblight.h
644
645* ba9ac457b2159097ecfd9848c5171c52e3a68260 Sun Jan 24 17:05:47 2016 -0800 Yang Liu
646* 2647c7cd84820a833b85e41ea86caf76b36e6ee1 Sun Jan 24 17:19:33 2016 -0800 Yang Liu
647* 620ac4b260fa663d12b11a0b15ac50379523c125 Thu Apr 21 19:35:18 2016 -0700 Eric Tang
648* 80c87054193b9243670aeb85adefbe1aa6c0fda0 Tue Jun 21 12:53:21 2016 -0400 Jack Humbert
649* 57e08eb8badc5db2fb44d2df684f32ea48cce411 Thu Jul 7 11:33:32 2016 -0400 Jack Humbert
650* b8679bbe045a2285d6ab6bbc420121b26f516b9a Wed Oct 5 20:41:33 2016 -0400 Jack Humbert
651* 9b0e21f87f446935f29254bb623c2cfe29472b6e Sun Oct 9 19:26:16 2016 +0300 Fred Sundvik
652* 33e62c080c9161a0fc921c90ed299a67fc2e1799 Sat Nov 12 20:54:37 2016 -0500 Jack Humbert
653* e9f748751808de2f1e85cf7fb670d78773bd5e76 Sun Nov 13 23:02:38 2016 -0500 Jack Humbert
654* 3774a7fcdab5544fc787f4c200be05fcd417e31f Thu Nov 17 17:42:14 2016 -0500 Jack Humbert
655* 285c5a91f23e972d9c579184283443111186329d Thu Nov 17 20:56:36 2016 -0500 Erez Zukerman
656* 2e23689b8e3222982082c1f5a4f8ce7686f9658b Wed Nov 23 18:52:02 2016 -0500 Jack Humbert
657* 4094544d41450617bc21ab58646603b8964eae0e Tue Nov 29 09:23:16 2016 -0500 Erez Zukerman
658* cae269b08b642b07ee06dec7120a784a3c3d7aab Fri Dec 23 10:29:19 2016 -0500 Jack Humbert
659* 748181dccddb8c9fa52a776f4fcd904ddca9aa31 Wed Dec 28 16:29:02 2016 -0500 Scott Wilson
660
661## quantum/variable_trace.c
662
663* f519b94be7086852f2afe4ec248786b47968f7ff Sun Nov 6 21:57:26 2016 +0200 Fred Sundvik
664* a377017c95b826d83ac7a46ef176d39a58294b44 Sun Nov 6 22:11:24 2016 +0200 Fred Sundvik
665
666## quantum/variable_trace.h
667
668* a377017c95b826d83ac7a46ef176d39a58294b44 Sun Nov 6 22:11:24 2016 +0200 Fred Sundvik
669* 0ba3e523a7c124e4ce54dfd043dc32e72ad3233b Sun Nov 6 22:44:43 2016 +0200 Fred Sundvik
670
671## quantum/version.h
672
673* None None None
674
675## quantum/api/api_sysex.c
676
677* 7edac212c8ed8442bf4207e70dc8194631b2bf27 Sat Nov 26 15:37:46 2016 -0500 Jack Humbert
678* dd685eceb2045371d38f24d454f1ab08ca7416f4 Thu Dec 29 12:13:30 2016 +0200 Fred Sundvik
679
680## quantum/api/api_sysex.h
681
682* 7edac212c8ed8442bf4207e70dc8194631b2bf27 Sat Nov 26 15:37:46 2016 -0500 Jack Humbert
683
684## quantum/audio/audio.c
685
686* 73228f5e5d1d4cd31a46e5e93aa893a8f727e3b9 Thu Apr 21 00:37:45 2016 -0400 Jack Humbert
687* 620ac4b260fa663d12b11a0b15ac50379523c125 Thu Apr 21 19:35:18 2016 -0700 Eric Tang
688* 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 Tue May 3 12:56:40 2016 -0500 IBNobody
689* 3f02637f4dd765803671c2611191beb096d60b36 Mon May 9 13:17:15 2016 -0400 Jack Humbert
690* 15719f3574c6274ee0f3ec87431927c5a523aa3e Sun May 15 00:40:59 2016 -0400 Jack Humbert
691* 0428214b905e5f8b3bed721885957ce249ba4991 Wed May 18 23:14:00 2016 -0400 Jack Humbert
692* 287eb7ad148abc8fe3fb014218d71e205fd9131d Tue May 24 11:56:53 2016 -0400 Jack Humbert
693* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
694* 06c64bbff3e228df542149acde64eadaf59b9b0f Mon Dec 19 11:18:18 2016 -0500 Jack Humbert
695
696## quantum/audio/audio.h
697
698* 73228f5e5d1d4cd31a46e5e93aa893a8f727e3b9 Thu Apr 21 00:37:45 2016 -0400 Jack Humbert
699* 082a0f313d8c842a5de7bae30ec8a3597e35880b Fri Apr 22 00:01:38 2016 -0500 IBNobody
700* 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 Tue May 3 12:56:40 2016 -0500 IBNobody
701* 3f02637f4dd765803671c2611191beb096d60b36 Mon May 9 13:17:15 2016 -0400 Jack Humbert
702* 15719f3574c6274ee0f3ec87431927c5a523aa3e Sun May 15 00:40:59 2016 -0400 Jack Humbert
703* 0428214b905e5f8b3bed721885957ce249ba4991 Wed May 18 23:14:00 2016 -0400 Jack Humbert
704* 287eb7ad148abc8fe3fb014218d71e205fd9131d Tue May 24 11:56:53 2016 -0400 Jack Humbert
705* 215c2119af5281072d5a6efb0308408793cadd08 Wed Jun 29 16:21:41 2016 -0400 Jack Humbert
706
707## quantum/audio/audio_pwm.c
708
709* 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 Tue May 3 12:56:40 2016 -0500 IBNobody
710* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
711
712## quantum/audio/luts.c
713
714* 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 Tue May 3 12:56:40 2016 -0500 IBNobody
715
716## quantum/audio/luts.h
717
718* 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 Tue May 3 12:56:40 2016 -0500 IBNobody
719
720## quantum/audio/musical_notes.h
721
722* 73228f5e5d1d4cd31a46e5e93aa893a8f727e3b9 Thu Apr 21 00:37:45 2016 -0400 Jack Humbert
723
724## quantum/audio/song_list.h
725
726* 73228f5e5d1d4cd31a46e5e93aa893a8f727e3b9 Thu Apr 21 00:37:45 2016 -0400 Jack Humbert
727* 7d0345ef25b5e1924f1e98c76d78607778e0b17d Sat Jul 30 01:52:33 2016 -0700 JeeBak Kim
728
729## quantum/audio/voices.c
730
731* 73228f5e5d1d4cd31a46e5e93aa893a8f727e3b9 Thu Apr 21 00:37:45 2016 -0400 Jack Humbert
732* e89b806b850ad1b5484176664288b71b0131683e Thu Apr 21 00:40:00 2016 -0400 Jack Humbert
733* 9828aba2a12f03fccbc1095bc8e4918ae58fa31b Thu Apr 21 18:14:25 2016 -0400 Jack Humbert
734* 7b3f212500210ae85063b043952b5b3ef6988ad6 Thu Apr 21 23:10:47 2016 -0400 Jack Humbert
735* 082a0f313d8c842a5de7bae30ec8a3597e35880b Fri Apr 22 00:01:38 2016 -0500 IBNobody
736* b1900c8dde2a68e87aaabd84280a99bf6658ea9f Fri Apr 22 01:02:50 2016 -0400 Jack Humbert
737* a8086126fecbdce1c192036cf1011329d406949d Fri Apr 22 01:04:13 2016 -0400 Jack Humbert
738* a718c53fe77f0b3b4361c850531eee5f23e3e13d Fri Apr 22 11:58:29 2016 -0400 Jack Humbert
739* e7b6bb641c0636c01e3781fe51865fdb20014eeb Mon Apr 25 00:59:47 2016 -0400 Jack Humbert
740* 140b97a1cd226432a8ec647004943698e3d87f0b Tue Apr 26 01:16:47 2016 -0400 Jack Humbert
741* 66e0323881a5a3da65e14daeec41a1e9cfbda431 Fri Apr 29 12:42:55 2016 -0400 Jack Humbert
742* 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 Tue May 3 12:56:40 2016 -0500 IBNobody
743* 0edfe55bfe4afd037918ff73e49552a28f39a5ca Mon Dec 12 15:39:07 2016 -0500 Jack Humbert
744* 06c64bbff3e228df542149acde64eadaf59b9b0f Mon Dec 19 11:18:18 2016 -0500 Jack Humbert
745* 438a5d685bb7b726ff59109ce4229eca6303cd8e Tue Dec 20 19:38:22 2016 -0500 Jack Humbert
746* 2fa36e38cf28f07ad4a4d74722486921fa7b8706 Wed Dec 21 00:22:32 2016 -0500 Jack Humbert
747
748## quantum/audio/voices.h
749
750* 73228f5e5d1d4cd31a46e5e93aa893a8f727e3b9 Thu Apr 21 00:37:45 2016 -0400 Jack Humbert
751* e89b806b850ad1b5484176664288b71b0131683e Thu Apr 21 00:40:00 2016 -0400 Jack Humbert
752* 9828aba2a12f03fccbc1095bc8e4918ae58fa31b Thu Apr 21 18:14:25 2016 -0400 Jack Humbert
753* 7b3f212500210ae85063b043952b5b3ef6988ad6 Thu Apr 21 23:10:47 2016 -0400 Jack Humbert
754* 082a0f313d8c842a5de7bae30ec8a3597e35880b Fri Apr 22 00:01:38 2016 -0500 IBNobody
755* b1900c8dde2a68e87aaabd84280a99bf6658ea9f Fri Apr 22 01:02:50 2016 -0400 Jack Humbert
756* a8086126fecbdce1c192036cf1011329d406949d Fri Apr 22 01:04:13 2016 -0400 Jack Humbert
757* a718c53fe77f0b3b4361c850531eee5f23e3e13d Fri Apr 22 11:58:29 2016 -0400 Jack Humbert
758* e7b6bb641c0636c01e3781fe51865fdb20014eeb Mon Apr 25 00:59:47 2016 -0400 Jack Humbert
759* 140b97a1cd226432a8ec647004943698e3d87f0b Tue Apr 26 01:16:47 2016 -0400 Jack Humbert
760* 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 Tue May 3 12:56:40 2016 -0500 IBNobody
761* 0edfe55bfe4afd037918ff73e49552a28f39a5ca Mon Dec 12 15:39:07 2016 -0500 Jack Humbert
762* 06c64bbff3e228df542149acde64eadaf59b9b0f Mon Dec 19 11:18:18 2016 -0500 Jack Humbert
763* 438a5d685bb7b726ff59109ce4229eca6303cd8e Tue Dec 20 19:38:22 2016 -0500 Jack Humbert
764
765## quantum/audio/wave.h
766
767* 73228f5e5d1d4cd31a46e5e93aa893a8f727e3b9 Thu Apr 21 00:37:45 2016 -0400 Jack Humbert
768
769## quantum/keymap_extras/keymap_bepo.h
770
771* 7c33f8493fb4ecd664390232c8de856158f9fcae Sun Feb 7 19:29:49 2016 +0100 Didier Loiseau
772* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
773* 7b4d30ee50aa534a973473c715924964991739f0 Sun Jul 24 10:57:49 2016 +0200 Vivien Alger
774
775## quantum/keymap_extras/keymap_br_abnt2.h
776
777* 7aa31ad338325477199f752ac3e344a6ab9b27d0 Tue Nov 8 13:32:04 2016 -0200 Potiguar Faga
778
779## quantum/keymap_extras/keymap_canadian_multilingual.h
780
781* a7cef2ca0a2322448d02008337013936b1d550ec Wed Feb 17 21:45:38 2016 +0100 Didier Loiseau
782* 7840e69bfaee1d67de273c235b532d6f20c905a9 Thu Feb 18 00:47:23 2016 +0100 Didier Loiseau
783* 911222892ecb1c01551e0abdfbe98ed1dbf82139 Fri Feb 26 00:55:39 2016 +0100 Didier Loiseau
784* 3a91ddb0745ae0f52007984793ea1b48abb2098c Tue Mar 1 22:59:38 2016 +0100 Didier Loiseau
785* aa5eb49edd993e2abe3adf814e030fcdda4a3596 Wed Mar 2 00:22:41 2016 +0100 Didier Loiseau
786* 1aeb59335f2fe67613df25308a630ca453975ac0 Sun Sep 11 02:19:55 2016 +0200 Didier Loiseau
787
788## quantum/keymap_extras/keymap_colemak.h
789
790* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
791* 39915b1748cefd99f841fa03b7f6e7c20439fbcf Thu Oct 29 15:12:51 2015 -0400 Jack Humbert
792* 3c683aa9f23288ddada760fb49abcc5fa7324f5e Fri Feb 5 16:28:24 2016 +0200 Erez Zukerman
793* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
794
795## quantum/keymap_extras/keymap_dvorak.h
796
797* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
798* 233af3a41c69d456583bfcfd897233b9c117caa6 Mon Feb 22 13:06:26 2016 -0500 Keller-Laminar
799* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
800* 4278d8861526ed285d9d00badcdc8c121454be60 Thu Jul 14 11:32:43 2016 -0500 Jonathan A. Kollasch
801* f0021c9cb9e30d47d5a3ab5ec75e59e626c3d244 Mon Sep 19 14:25:44 2016 -0500 Jonathan A. Kollasch
802
803## quantum/keymap_extras/keymap_dvp.h
804
805* 6e003b1e3fa844cfde0069004e755aae7a9539f3 Wed Oct 19 23:45:55 2016 +0300 Artyom Mironov
806
807## quantum/keymap_extras/keymap_fr_ch.h
808
809* 1934e8a270820ff6f08c95f4399b26162623e4e0 Sat Feb 20 14:01:28 2016 +0100 Vincent Pochet
810* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
811* 25938a09a6bfb2624bc96841b53897eda532e293 Thu Jul 14 11:13:35 2016 -0500 Jonathan A. Kollasch
812
813## quantum/keymap_extras/keymap_french.h
814
815* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
816* 4a19cc054dc7aeb0a35613d608143bf51fa791cc Sat Feb 27 15:22:54 2016 +0100 Kévin Letord
817* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
818* 010dd1308420e25b327fa4d5d6b13f67a849408b Thu Jul 14 11:04:25 2016 -0500 Jonathan A. Kollasch
819* 25938a09a6bfb2624bc96841b53897eda532e293 Thu Jul 14 11:13:35 2016 -0500 Jonathan A. Kollasch
820
821## quantum/keymap_extras/keymap_french_osx.h
822
823* 48eff6dd89672c6c71afd8a3d1cdc5d35b0bf768 Tue Jan 5 10:49:36 2016 +0100 Sébastien Pérochon
824* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
825
826## quantum/keymap_extras/keymap_german.h
827
828* 3dbcad51d1217b32c3c17917c2646fa7a9a9165b Sat Dec 19 01:22:12 2015 +0100 Matthias Schmitt
829* da09312dd56e3b085fb217cc7cc2abf06f401992 Tue Jan 19 20:04:08 2016 +0100 plgruener
830* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
831* 25938a09a6bfb2624bc96841b53897eda532e293 Thu Jul 14 11:13:35 2016 -0500 Jonathan A. Kollasch
832
833## quantum/keymap_extras/keymap_german_ch.h
834
835* 465aabe11dbd673fb4c68ecbffbfb062273def1a Wed May 18 21:22:04 2016 +0200 heartsekai
836* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
837* 25938a09a6bfb2624bc96841b53897eda532e293 Thu Jul 14 11:13:35 2016 -0500 Jonathan A. Kollasch
838
839## quantum/keymap_extras/keymap_german_osx.h
840
841* e44c30f2030dd4c481a6e38e9392f147be7b0ae2 Fri Jan 15 15:55:00 2016 +0100 Stephan Bösebeck
842* bfc6eca44aeb3ad22a1c37206005dcfe617431cd Mon Mar 14 13:35:34 2016 +0100 Daniel Kriesten
843* dbd4ab3457dd001ab4bbcec14315047b815f7dfe Thu Mar 31 23:15:59 2016 +0200 Stephan Bösebeck
844* 6d40f7c5060f608068b0c4fc90871687c70b4f05 Sun Apr 17 22:19:47 2016 +0200 Stephan Bösebeck
845* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
846* 1a0bac8bccf0e156d2f3c5f14a7214f9677b6370 Tue Jun 21 17:42:29 2016 -0400 Jack Humbert
847
848## quantum/keymap_extras/keymap_jp.h
849
850* 2febf9b9f7d610fc2eca666a842272cb90a87919 Tue Nov 22 20:40:12 2016 +0900 h-youhei
851
852## quantum/keymap_extras/keymap_neo2.h
853
854* 7b7870bae178c80138be5c587238fdedeb837df9 Sat Dec 19 01:41:23 2015 +0100 Matthias Schmitt
855* 4ca43225011ac94bd0a7976baf7f84059274dfbf Fri Feb 19 21:04:30 2016 +0100 plgruener
856* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
857* e329729d3a11b5798f4e2b9f65ac9bc2dcc84a9e Tue Jun 21 18:32:28 2016 -0400 Jack Humbert
858
859## quantum/keymap_extras/keymap_nordic.h
860
861* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
862* c29ad125a7a58d5a2ced0a619165204136da9019 Fri Feb 5 01:50:54 2016 +0100 Fernando Mendonca
863* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
864* 25938a09a6bfb2624bc96841b53897eda532e293 Thu Jul 14 11:13:35 2016 -0500 Jonathan A. Kollasch
865* 283ebbe14298fe75128765fa42c46f02534fb761 Mon Jul 25 12:50:27 2016 +0200 Andreas Lindhé
866* 555e41d9e5f8d393637898e2c77c64066b648245 Fri Dec 2 13:03:51 2016 -0500 Erez Zukerman
867
868## quantum/keymap_extras/keymap_norwegian.h
869
870* e329729d3a11b5798f4e2b9f65ac9bc2dcc84a9e Tue Jun 21 18:32:28 2016 -0400 Jack Humbert
871* b6fa762234fb5a3590d0ff91ffdf5aa3ae322c8f Mon Jul 25 11:29:54 2016 +0200 Andreas Lindhé
872
873## quantum/keymap_extras/keymap_plover.h
874
875* 7ccfaf750d08bdb3a25ef2869cac251b7cd4d3ad Sat Apr 23 18:49:10 2016 +0100 James ‘Twey’ Kay
876* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
877
878## quantum/keymap_extras/keymap_russian.h
879
880* c5ee24a6c3ea39e9725dfc276c92d5bce726ca78 Sun Aug 7 11:01:12 2016 -0500 kuel
881* 2a0121a78643b1dc774d82352f8c9e246010803e Sun Aug 7 11:07:38 2016 -0500 kuel
882
883## quantum/keymap_extras/keymap_spanish.h
884
885* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
886* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
887* 132c04746910f7230b63ed33717c4ed65599ed1b Sat Jul 2 10:26:04 2016 +0200 Rubén Díaz-Jorge
888* 25938a09a6bfb2624bc96841b53897eda532e293 Thu Jul 14 11:13:35 2016 -0500 Jonathan A. Kollasch
889
890## quantum/keymap_extras/keymap_uk.h
891
892* 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 Mon Oct 26 14:49:46 2015 -0400 Jack Humbert
893* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
894* 010dd1308420e25b327fa4d5d6b13f67a849408b Thu Jul 14 11:04:25 2016 -0500 Jonathan A. Kollasch
895* 25938a09a6bfb2624bc96841b53897eda532e293 Thu Jul 14 11:13:35 2016 -0500 Jonathan A. Kollasch
896
897## quantum/keymap_extras/keymap_unicode_cyrillic.h
898
899* c5ee24a6c3ea39e9725dfc276c92d5bce726ca78 Sun Aug 7 11:01:12 2016 -0500 kuel
900
901## quantum/process_keycode/process_chording.c
902
903* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
904
905## quantum/process_keycode/process_chording.h
906
907* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
908
909## quantum/process_keycode/process_leader.c
910
911* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
912
913## quantum/process_keycode/process_leader.h
914
915* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
916
917## quantum/process_keycode/process_midi.c
918
919* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
920* 8b94e26d7c3b30cc57d710a11e5651d15e8e3b20 Sun Jul 24 22:07:43 2016 -0400 Jack Humbert
921* 8d99140d1b80bf497b2198138d3f481e93b0fbab Thu Sep 29 14:46:10 2016 -0500 Adam Gausmann
922
923## quantum/process_keycode/process_midi.h
924
925* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
926
927## quantum/process_keycode/process_music.c
928
929* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
930* 3ea738e450e9326b0d3ee4192da881cffb4c13c1 Sun Jul 24 10:00:39 2016 -0400 Robert Dale
931* ae95834f5af7404c04e6fe3446019046278d814b Mon Dec 12 16:06:41 2016 -0500 Jack Humbert
932* 273faa4d9cd5a84207548f83ba550c9efee90933 Fri Dec 23 20:59:00 2016 -0500 Jack Humbert
933* 841d7e6a1d74b1fc45575ed551132ec27353ebf3 Mon Jan 23 13:55:24 2017 -0500 Jack Humbert
934
935## quantum/process_keycode/process_music.h
936
937* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
938
939## quantum/process_keycode/process_printer.c
940
941* a889b899e2cf52b3b7807d8a7ad39f12e0761a10 Sun Oct 16 16:03:56 2016 -0400 Jack Humbert
942
943## quantum/process_keycode/process_printer.h
944
945* a889b899e2cf52b3b7807d8a7ad39f12e0761a10 Sun Oct 16 16:03:56 2016 -0400 Jack Humbert
946
947## quantum/process_keycode/process_printer_bb.c
948
949* a889b899e2cf52b3b7807d8a7ad39f12e0761a10 Sun Oct 16 16:03:56 2016 -0400 Jack Humbert
950
951## quantum/process_keycode/process_tap_dance.c
952
953* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
954* 1a7e954f9fc4d250ba1ae46e3bfc168aca2b5cce Wed Jul 13 00:20:28 2016 +0200 Pavlos Vinieratos
955* f3b56701ed7e6c622dc48e429780124ba5fde172 Wed Jul 13 16:47:45 2016 +0200 Pavlos Vinieratos
956* d3091faf363afc8fef73ddf4948f872439b0e827 Fri Jul 15 23:54:08 2016 +0200 Pavlos Vinieratos
957* dda2fd6ff3984ed96f8275c661b47a0484f9ee18 Mon Jul 18 23:34:02 2016 +0200 Pavlos Vinieratos
958* d5daec2a58019ebdb9804787e0f786e4fc3c05b9 Tue Jul 19 18:00:59 2016 +0200 Pavlos Vinieratos
959* 4e6a8627d8ebd7af942f68142d1a959d60361d90 Tue Jul 19 18:02:13 2016 +0200 Pavlos Vinieratos
960* 70e42489dec375e558d8e81ed5ebfb69b4f3dbd9 Wed Jul 20 10:22:52 2016 +0200 Gergely Nagy
961* ce8cc9219fca5dde077f1142d03d011b38d27479 Wed Jul 20 11:34:45 2016 +0200 Gergely Nagy
962* 44e16ffc80620b61eaa17aedcfdd8233d9c99bd9 Wed Jul 20 11:49:59 2016 +0200 Gergely Nagy
963* b21e8b97acb722bfa7b85831cfd010716ed77962 Wed Jul 27 08:42:09 2016 +0200 Gergely Nagy
964* d78058cc75a9b05a6885991506d5f807ebb2a9f9 Wed Aug 17 10:28:08 2016 +0200 Gergely Nagy
965* 29f64d7a93d941167c6c6e95f893ab84586b2205 Wed Aug 17 13:04:50 2016 +0200 Gergely Nagy
966* 0d28787c5cf2173d12f57b397515f91cffaa820a Thu Aug 18 11:29:53 2016 +0200 Gergely Nagy
967* acda2b793f69c6e0e9b9667e9ebe8a0325eb5ecd Thu Sep 1 08:32:47 2016 +0200 Gergely Nagy
968* e1f131db8e59c6ed3471906d3a62457d593f51af Wed Sep 21 10:11:42 2016 +0200 Pavlos Vinieratos
969
970## quantum/process_keycode/process_tap_dance.h
971
972* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
973* f3b56701ed7e6c622dc48e429780124ba5fde172 Wed Jul 13 16:47:45 2016 +0200 Pavlos Vinieratos
974* d3091faf363afc8fef73ddf4948f872439b0e827 Fri Jul 15 23:54:08 2016 +0200 Pavlos Vinieratos
975* 70e42489dec375e558d8e81ed5ebfb69b4f3dbd9 Wed Jul 20 10:22:52 2016 +0200 Gergely Nagy
976* ce8cc9219fca5dde077f1142d03d011b38d27479 Wed Jul 20 11:34:45 2016 +0200 Gergely Nagy
977* b21e8b97acb722bfa7b85831cfd010716ed77962 Wed Jul 27 08:42:09 2016 +0200 Gergely Nagy
978* 29f64d7a93d941167c6c6e95f893ab84586b2205 Wed Aug 17 13:04:50 2016 +0200 Gergely Nagy
979* 0edc82f0300924394324e2f3c4d2f8f0008439db Wed Sep 21 11:29:34 2016 +0200 Pavlos Vinieratos
980* cda4b534fa4921c2d8f9884aa6a144333e7b07c4 Wed Sep 21 11:29:43 2016 +0200 Pavlos Vinieratos
981
982## quantum/process_keycode/process_unicode.c
983
984* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
985* 8bdf745909bc2581491acce11225f56a85bc8f24 Sat Aug 13 10:33:47 2016 +0200 Gergely Nagy
986* 63e5782d2cdf0ee282ad434c773463d9da9db6b3 Sat Aug 13 10:43:22 2016 +0200 Gergely Nagy
987* fa06a163607e8c6c4bd0968c2de96a9a298b777c Sat Aug 13 10:46:38 2016 +0200 Gergely Nagy
988* 0b6861827faea747345ea38202d64c8004ab128c Sat Aug 13 11:11:22 2016 +0200 Gergely Nagy
989* 857aa5bef6a74f8785a7039feea5286c07bf7067 Sat Aug 13 11:14:42 2016 +0200 Gergely Nagy
990* 234dd276cf03be6fd6961473e9d9c8f35deec682 Sun Aug 14 10:37:51 2016 +0200 Gergely Nagy
991* a312cbf712764277e0dbbbb99410c2f6fc6c7484 Sun Aug 14 14:34:52 2016 +0200 Gergely Nagy
992* 43d08629cf275d0b32281ffe8785258fff226b49 Mon Aug 15 10:02:05 2016 +0200 Gergely Nagy
993* e8845f0daf8dc7a7674dc5420cc5a684bbbea09b Mon Aug 15 10:07:13 2016 +0200 Gergely Nagy
994* dffdeb50b79d3c623e2ed9fd1c1d82d6d0ae7bf0 Sun Aug 21 20:25:19 2016 +0200 coderkun
995* 81594c7883deefedbcd317c72c1b1f1d32e65cd7 Sun Aug 21 21:02:18 2016 +0200 coderkun
996* a058ae40e268b34ba5db45f5fd5d557d50fa5437 Wed Aug 24 15:39:23 2016 +0200 Gergely Nagy
997* c9ea236fc35d350c0ff33de0af84d3dee7d0eb95 Wed Aug 31 08:21:52 2016 +0200 Gergely Nagy
998* a3f5a4cf5839fe29dd37400d72c5e353812002f8 Sun Oct 2 10:35:09 2016 +0200 coderkun
999* 5b2e455d3b71bfb90754930d1f22d3e8ce98b927 Mon Oct 10 00:46:20 2016 +0700 Priyadi Iman Nurcahyo
1000* e7d5dc89f2890007d776f6b613dc9deb473cff22 Sun Oct 23 05:36:26 2016 +0700 Priyadi Iman Nurcahyo
1001* 4a666c201007eacf13a9031e3c9b156e2e04afe6 Sun Oct 23 19:15:33 2016 +0700 Priyadi Iman Nurcahyo
1002* 8d60354d5a116b6cb1fc32eac7461eb125543c7d Wed Oct 26 00:48:44 2016 -0400 Jack Humbert
1003* 30b80a23f3cafd846937b37b249f2df4411e1f5a Mon Jan 9 02:59:10 2017 +0700 Priyadi Iman Nurcahyo
1004
1005## quantum/process_keycode/process_unicode.h
1006
1007* 65faab3b89245f81c50b029ca178aed175d5f330 Wed Jun 29 17:49:41 2016 -0400 Jack Humbert
1008* 63e5782d2cdf0ee282ad434c773463d9da9db6b3 Sat Aug 13 10:43:22 2016 +0200 Gergely Nagy
1009* fa06a163607e8c6c4bd0968c2de96a9a298b777c Sat Aug 13 10:46:38 2016 +0200 Gergely Nagy
1010* 857aa5bef6a74f8785a7039feea5286c07bf7067 Sat Aug 13 11:14:42 2016 +0200 Gergely Nagy
1011* 234dd276cf03be6fd6961473e9d9c8f35deec682 Sun Aug 14 10:37:51 2016 +0200 Gergely Nagy
1012* a312cbf712764277e0dbbbb99410c2f6fc6c7484 Sun Aug 14 14:34:52 2016 +0200 Gergely Nagy
1013* 43d08629cf275d0b32281ffe8785258fff226b49 Mon Aug 15 10:02:05 2016 +0200 Gergely Nagy
1014* e8845f0daf8dc7a7674dc5420cc5a684bbbea09b Mon Aug 15 10:07:13 2016 +0200 Gergely Nagy
1015* a058ae40e268b34ba5db45f5fd5d557d50fa5437 Wed Aug 24 15:39:23 2016 +0200 Gergely Nagy
1016* c9ea236fc35d350c0ff33de0af84d3dee7d0eb95 Wed Aug 31 08:21:52 2016 +0200 Gergely Nagy
1017* 5b2e455d3b71bfb90754930d1f22d3e8ce98b927 Mon Oct 10 00:46:20 2016 +0700 Priyadi Iman Nurcahyo
1018* 4a666c201007eacf13a9031e3c9b156e2e04afe6 Sun Oct 23 19:15:33 2016 +0700 Priyadi Iman Nurcahyo
1019* 6fee7e178f7c949213a124d78de60bc30267d367 Sat Nov 26 23:53:15 2016 +0700 Priyadi Iman Nurcahyo
1020
1021## quantum/serial_link/LICENSE
1022
1023* 639cdd363e35c13fe331939d0972aa4db5f5198d Tue Jul 5 23:27:47 2016 +0300 Fred Sundvik
1024
1025## quantum/serial_link/README.md
1026
1027* 639cdd363e35c13fe331939d0972aa4db5f5198d Tue Jul 5 23:27:47 2016 +0300 Fred Sundvik
1028* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1029
1030## quantum/serial_link/protocol/byte_stuffer.c
1031
1032* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1033* 0a11460175d6a838c71343c19eb4ce4699936247 Wed Aug 24 22:23:17 2016 +0300 Fred Sundvik
1034
1035## quantum/serial_link/protocol/byte_stuffer.h
1036
1037* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1038* 0a11460175d6a838c71343c19eb4ce4699936247 Wed Aug 24 22:23:17 2016 +0300 Fred Sundvik
1039
1040## quantum/serial_link/protocol/frame_router.c
1041
1042* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1043
1044## quantum/serial_link/protocol/frame_router.h
1045
1046* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1047
1048## quantum/serial_link/protocol/frame_validator.c
1049
1050* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1051
1052## quantum/serial_link/protocol/frame_validator.h
1053
1054* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1055
1056## quantum/serial_link/protocol/physical.h
1057
1058* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1059
1060## quantum/serial_link/protocol/transport.c
1061
1062* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1063* bcdf9ab76bf3723e6015d4255d53e7c1e7259b61 Sat Aug 27 14:18:49 2016 +0300 Fred Sundvik
1064
1065## quantum/serial_link/protocol/transport.h
1066
1067* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1068* bcdf9ab76bf3723e6015d4255d53e7c1e7259b61 Sat Aug 27 14:18:49 2016 +0300 Fred Sundvik
1069
1070## quantum/serial_link/protocol/triple_buffered_object.c
1071
1072* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1073
1074## quantum/serial_link/protocol/triple_buffered_object.h
1075
1076* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1077
1078## quantum/serial_link/system/serial_link.c
1079
1080* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1081
1082## quantum/serial_link/system/serial_link.h
1083
1084* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1085
1086## quantum/serial_link/tests/byte_stuffer_tests.cpp
1087
1088* 0a11460175d6a838c71343c19eb4ce4699936247 Wed Aug 24 22:23:17 2016 +0300 Fred Sundvik
1089
1090## quantum/serial_link/tests/frame_router_tests.cpp
1091
1092* cdd0913bcc63334fa20f1a7bd46bdce4d4f2843b Sat Aug 27 13:43:46 2016 +0300 Fred Sundvik
1093
1094## quantum/serial_link/tests/frame_validator_tests.cpp
1095
1096* b3eba797af74ace19b9f2e762bdd33d9449e3f94 Sat Aug 27 13:54:16 2016 +0300 Fred Sundvik
1097
1098## quantum/serial_link/tests/Makefile
1099
1100* d5e7603d551a31836bf0c59db259ddc3593a1aa7 Wed Jul 6 13:26:20 2016 +0300 Fred Sundvik
1101
1102## quantum/serial_link/tests/rules.mk
1103
1104* 0a11460175d6a838c71343c19eb4ce4699936247 Wed Aug 24 22:23:17 2016 +0300 Fred Sundvik
1105* cdd0913bcc63334fa20f1a7bd46bdce4d4f2843b Sat Aug 27 13:43:46 2016 +0300 Fred Sundvik
1106* b3eba797af74ace19b9f2e762bdd33d9449e3f94 Sat Aug 27 13:54:16 2016 +0300 Fred Sundvik
1107* bcdf9ab76bf3723e6015d4255d53e7c1e7259b61 Sat Aug 27 14:18:49 2016 +0300 Fred Sundvik
1108* ffb0a126f5b2484eda7f6b1c62ea61924eec6521 Sat Aug 27 14:25:52 2016 +0300 Fred Sundvik
1109
1110## quantum/serial_link/tests/testlist.mk
1111
1112* 6d7cd639a5e4503f00162c7cfa4bc7302b82c71c Sun Aug 21 16:29:54 2016 +0300 Fred Sundvik
1113* ffb0a126f5b2484eda7f6b1c62ea61924eec6521 Sat Aug 27 14:25:52 2016 +0300 Fred Sundvik
1114
1115## quantum/serial_link/tests/transport_tests.cpp
1116
1117* bcdf9ab76bf3723e6015d4255d53e7c1e7259b61 Sat Aug 27 14:18:49 2016 +0300 Fred Sundvik
1118
1119## quantum/serial_link/tests/triple_buffered_object_tests.cpp
1120
1121* ffb0a126f5b2484eda7f6b1c62ea61924eec6521 Sat Aug 27 14:25:52 2016 +0300 Fred Sundvik
1122
1123## quantum/template/config.h
1124
1125* 6f3141965e88c4ee0ebf7c18a243e4c2d9c5021b Tue Oct 27 14:33:18 2015 -0400 Jack Humbert
1126* 24f2698fba0055128eb90fbde793e3c84900df69 Sat Jan 23 20:45:52 2016 -0500 Jack Humbert
1127* 577971ab07a49405e1dcd8e5f75b3ecb87e710b9 Mon Mar 28 00:03:21 2016 -0500 IBNobody
1128* 1d13aa933bbb57bf0c1fe0196981b81233c3df97 Mon Mar 28 19:45:20 2016 -0500 IBNobody
1129* aaa758f1d3f97dda39879f2b055ad2da9680adfe Mon May 23 20:42:21 2016 -0700 Eric Tang
1130* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1131
1132## quantum/template/Makefile
1133
1134* 6f3141965e88c4ee0ebf7c18a243e4c2d9c5021b Tue Oct 27 14:33:18 2015 -0400 Jack Humbert
1135* 6485c7d7dae01c499a7e1f27e7956f12ce0f6901 Thu Nov 5 12:07:03 2015 -0500 Jack Humbert
1136* 24f2698fba0055128eb90fbde793e3c84900df69 Sat Jan 23 20:45:52 2016 -0500 Jack Humbert
1137* 577971ab07a49405e1dcd8e5f75b3ecb87e710b9 Mon Mar 28 00:03:21 2016 -0500 IBNobody
1138* 0656f2fa10e25e160617c3e5d14cfbae35dd9c8d Fri Apr 29 22:19:40 2016 -0400 Jack Humbert
1139* 38987d4c1589d2d457459f42e179be24b712be30 Sat May 28 12:05:17 2016 -0400 Jack Humbert
1140* d9e4dad0a828a8a904f44dda090a4d6d08fe2948 Sat Jun 11 13:31:31 2016 -0400 Jack Humbert
1141* a8375fa15a6ca9285eb15ae89bcda898349e06f8 Tue Jun 21 10:21:43 2016 -0400 Jack Humbert
1142* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1143* ab4d7adbb96fa034fd20364247d615f527661594 Fri Aug 19 09:06:28 2016 +0300 Fred Sundvik
1144
1145## quantum/template/readme.md
1146
1147* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1148* 1f5838a28679975f689e35471a35720ed5c7e7c5 Sat Aug 27 23:29:37 2016 +0300 Fred Sundvik
1149
1150## quantum/template/rules.mk
1151
1152* ab4d7adbb96fa034fd20364247d615f527661594 Fri Aug 19 09:06:28 2016 +0300 Fred Sundvik
1153
1154## quantum/template/template.c
1155
1156* 6f3141965e88c4ee0ebf7c18a243e4c2d9c5021b Tue Oct 27 14:33:18 2015 -0400 Jack Humbert
1157* 641859df84bf40025b2c14319d1a168a435562e2 Thu Mar 10 11:28:34 2016 -0500 yoyoerx
1158* eba9a7d74db0be548cddc107f0370dabf43b017f Tue Mar 15 23:52:51 2016 -0500 IBNobody
1159* ec62d9e85cab5cf166241b0536120d005fa7c898 Tue Mar 22 20:39:05 2016 -0500 IBNobody
1160* 3d56ec052ed485d4b717da930c4024b4a3f792e0 Tue Mar 22 21:06:22 2016 -0500 IBNobody
1161* 2181be029e01d9cf46ae3cadcdf25f5bca02c631 Mon Mar 28 16:13:37 2016 +0200 Damien Pollet
1162* 0656f2fa10e25e160617c3e5d14cfbae35dd9c8d Fri Apr 29 22:19:40 2016 -0400 Jack Humbert
1163* 1a8c0dd22d6a2255511d0db6a456315541b5815b Sun May 15 00:27:32 2016 -0400 Erez Zukerman
1164* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1165* 589df84d6cd19ad7d776cc19bcddade1cd178ddc Thu Jul 7 09:58:44 2016 -0400 Jack Humbert
1166* c1dfb636ef61159456bdb24f4fee3f27e5babbeb Thu Jul 7 12:22:10 2016 -0400 Jack Humbert
1167
1168## quantum/template/template.h
1169
1170* 6f3141965e88c4ee0ebf7c18a243e4c2d9c5021b Tue Oct 27 14:33:18 2015 -0400 Jack Humbert
1171* 24f2698fba0055128eb90fbde793e3c84900df69 Sat Jan 23 20:45:52 2016 -0500 Jack Humbert
1172* ee1b94045e5bebda517119cb1853b0ab3fd0f499 Fri Mar 4 10:53:58 2016 -0500 Noah Andrews
1173* 641859df84bf40025b2c14319d1a168a435562e2 Thu Mar 10 11:28:34 2016 -0500 yoyoerx
1174* eba9a7d74db0be548cddc107f0370dabf43b017f Tue Mar 15 23:52:51 2016 -0500 IBNobody
1175* ec62d9e85cab5cf166241b0536120d005fa7c898 Tue Mar 22 20:39:05 2016 -0500 IBNobody
1176* 2181be029e01d9cf46ae3cadcdf25f5bca02c631 Mon Mar 28 16:13:37 2016 +0200 Damien Pollet
1177* 0656f2fa10e25e160617c3e5d14cfbae35dd9c8d Fri Apr 29 22:19:40 2016 -0400 Jack Humbert
1178* 1a8c0dd22d6a2255511d0db6a456315541b5815b Sun May 15 00:27:32 2016 -0400 Erez Zukerman
1179* db32864ce7029d758f57729cc2f75e051a28d0a2 Sat Jun 18 14:30:24 2016 -0400 Jack Humbert
1180* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1181
1182## quantum/template/keymaps/default/config.h
1183
1184* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1185
1186## quantum/template/keymaps/default/keymap.c
1187
1188* d9e4dad0a828a8a904f44dda090a4d6d08fe2948 Sat Jun 11 13:31:31 2016 -0400 Jack Humbert
1189* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1190
1191## quantum/template/keymaps/default/Makefile
1192
1193* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1194
1195## quantum/template/keymaps/default/readme.md
1196
1197* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1198
1199## quantum/tools/eeprom_reset.hex
1200
1201* 0b0ec82427aff54481103559066213056b6d7598 Sat Apr 16 00:01:22 2016 -0400 Jack Humbert
1202
1203## quantum/tools/readme.md
1204
1205* 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b Thu Jun 23 22:18:20 2016 -0400 Jack Humbert
1206
1207## quantum/visualizer/lcd_backlight.c
1208
1209* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1210
1211## quantum/visualizer/lcd_backlight.h
1212
1213* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1214
1215## quantum/visualizer/led_test.c
1216
1217* 6c296557909501b71fe344ce379e74094cf77c8e Wed Jul 6 20:30:58 2016 +0300 Fred Sundvik
1218* 07d0d5cbe48d7afaf0bc8c9916d40179ec51cb42 Thu Jul 7 12:46:10 2016 +0300 Fred Sundvik
1219
1220## quantum/visualizer/led_test.h
1221
1222* 6c296557909501b71fe344ce379e74094cf77c8e Wed Jul 6 20:30:58 2016 +0300 Fred Sundvik
1223
1224## quantum/visualizer/LICENSE.md
1225
1226* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1227
1228## quantum/visualizer/readme.md
1229
1230* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1231
1232## quantum/visualizer/visualizer.c
1233
1234* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1235* 6c296557909501b71fe344ce379e74094cf77c8e Wed Jul 6 20:30:58 2016 +0300 Fred Sundvik
1236* 70797bb8f21c72cba15b314b2d0a6684bfedc369 Thu Jul 7 00:20:20 2016 +0300 Fred Sundvik
1237* 7229751ba9d402b2a6c9dc1b7b29385b5162fe41 Thu Jul 7 14:01:20 2016 +0300 Fred Sundvik
1238* dae7c9bfb3325412c542fbbe4342c9c8e0fc1904 Thu Jul 7 14:12:56 2016 +0300 Fred Sundvik
1239* 9eb8d05246fba4f46c04b8fa1884b8f2d2ee0664 Tue Jan 17 21:47:07 2017 -0500 SjB
1240
1241## quantum/visualizer/visualizer.h
1242
1243* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1244* 6c296557909501b71fe344ce379e74094cf77c8e Wed Jul 6 20:30:58 2016 +0300 Fred Sundvik
1245* 70797bb8f21c72cba15b314b2d0a6684bfedc369 Thu Jul 7 00:20:20 2016 +0300 Fred Sundvik
1246* 9eb8d05246fba4f46c04b8fa1884b8f2d2ee0664 Tue Jan 17 21:47:07 2017 -0500 SjB
1247
1248## quantum/visualizer/visualizer.mk
1249
1250* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1251* 6c296557909501b71fe344ce379e74094cf77c8e Wed Jul 6 20:30:58 2016 +0300 Fred Sundvik
1252* 70797bb8f21c72cba15b314b2d0a6684bfedc369 Thu Jul 7 00:20:20 2016 +0300 Fred Sundvik
1253* 07d0d5cbe48d7afaf0bc8c9916d40179ec51cb42 Thu Jul 7 12:46:10 2016 +0300 Fred Sundvik
1254* 7229751ba9d402b2a6c9dc1b7b29385b5162fe41 Thu Jul 7 14:01:20 2016 +0300 Fred Sundvik
1255* aaac254ebce2005272e7385488b5690bbbe6d7c8 Thu Jul 7 14:29:53 2016 +0300 Fred Sundvik
1256* caedec92d2c22480313c43a364408fb920c55364 Thu Jul 7 14:42:16 2016 +0300 Fred Sundvik
1257
1258## quantum/visualizer/example_integration/callbacks.c
1259
1260* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1261
1262## quantum/visualizer/example_integration/gfxconf.h
1263
1264* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1265
1266## quantum/visualizer/example_integration/lcd_backlight_hal.c
1267
1268* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik
1269
1270## quantum/visualizer/example_integration/visualizer_user.c
1271
1272* 9f33a5593cc70dfb0885328061f1aa4b2c2fa386 Wed Jul 6 20:15:45 2016 +0300 Fred Sundvik \ No newline at end of file
diff --git a/docs/mbed_cortex_porting.md b/docs/mbed_cortex_porting.md
deleted file mode 100644
index b4b1314e6..000000000
--- a/docs/mbed_cortex_porting.md
+++ /dev/null
@@ -1,36 +0,0 @@
1## supported projects
2### PS/2 converter
3Confirmed it works on NXP LPC11U35.
4- http://developer.mbed.org/platforms/TG-LPC11U35-501/
5
6### Infinity keyboard
7It runs on Freescale MK20DX128.
8
9
10
11## compile error: cstddef
12Experienced this with arm-none-eabi-gcc (4.8.2-14ubuntu1+6) 4.8.2 on ubuntu 14.04.
13
14And resolved with 4.9.3 installed from:
15- https://launchpad.net/gcc-arm-embedded
16- https://launchpad.net/~terry.guo/+archive/ubuntu/gcc-arm-embedded
17
18```
19$ make -f Makefile.mbed
20mkdir -p build/.
21arm-none-eabi-g++ -include config_mbed.h -mcpu=cortex-m0 -mthumb -c -g -fno-common -fmessage-length=0 -Wall -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -fshort-wchar -fno-builtin -MMD -MP -DNDEBUG -Os -DTARGET_LPC11U35_401 -DTARGET_M0 -DTARGET_NXP -DTARGET_LPC11UXX -DTOOLCHAIN_GCC_ARM -DTOOLCHAIN_GCC -D__CORTEX_M0 -DARM_MATH_CM0 -DMBED_BUILD_TIMESTAMP=1399108688.49 -D__MBED__=1 -std=gnu++98 -I. -I../../mbed-sdk/libraries/mbed/targets -I../../mbed-sdk/libraries/mbed/targets/cmsis -I../../mbed-sdk/libraries/mbed/targets/cmsis/TARGET_NXP -I../../mbed-sdk/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX -I../../mbed-sdk/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX/TOOLCHAIN_GCC_ARM -I../../mbed-sdk/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX/TOOLCHAIN_GCC_ARM/TARGET_LPC11U35_501 -I../../mbed-sdk/libraries/mbed/targets/hal -I../../mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP -I../../mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP/TARGET_LPC11UXX -I../../mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP/TARGET_LPC11UXX/TARGET_MCU_LPC11U35_501 -I../../mbed-sdk/libraries/mbed/targets/hal/TARGET_NXP/TARGET_LPC11UXX/TARGET_MCU_LPC11U35_501/TARGET_LPC11U35_501 -I../../mbed-sdk/libraries/mbed -I../../mbed-sdk/libraries/mbed/hal -I../../mbed-sdk/libraries/mbed/api -I../../mbed-sdk/libraries/mbed/common -I../../mbed-sdk/libraries/USBDevice -I../../mbed-sdk/libraries/USBDevice/USBHID -I../../mbed-sdk/libraries/USBDevice/USBDevice -I../../mbed-sdk/libraries/USBDevice/USBAudio -I../../mbed-sdk/libraries/USBDevice/USBSerial -I../../mbed-sdk/libraries/USBDevice/USBMSD -I../../mbed-sdk/libraries/USBDevice/USBMIDI -I../../protocol/mbed -I../../common -I../../protocol -o build/./main.o main.cpp
22In file included from ../../mbed-sdk/libraries/mbed/api/mbed.h:21:0,
23 from main.cpp:1:
24../../mbed-sdk/libraries/mbed/api/platform.h:25:19: fatal error: cstddef: No such file or directory
25 #include <cstddef>
26 ^
27compilation terminated.
28make: *** [build/./main.o] Error 1
29
30[13:13] noname@desk:/mnt/old_root/home/noname/tmp/tmk_keyboard/converter/ps2_usb
31$ arm-none-eabi-gcc --version
32arm-none-eabi-gcc (4.8.2-14ubuntu1+6) 4.8.2
33Copyright (C) 2013 Free Software Foundation, Inc.
34This is free software; see the source for copying conditions. There is NO
35warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
36``` \ No newline at end of file
diff --git a/docs/memory_write_error,_use_debug_for_more_info.md b/docs/memory_write_error,_use_debug_for_more_info.md
deleted file mode 100644
index 154f3620b..000000000
--- a/docs/memory_write_error,_use_debug_for_more_info.md
+++ /dev/null
@@ -1,21 +0,0 @@
1In rare circumstances, your keyboard/device can become unwritable, and `dfu-programmer` will give you an error like this:
2
3 Erasing flash... Success
4 Checking memory from 0x0 to 0x6FFF... Empty.
5 Checking memory from 0x0 to 0x607F... Empty.
6 0% 100% Programming 0x6080 bytes...
7 [ X ERROR
8 Memory write error, use debug for more info.
9
10Currently the only way to solve this is to [reprogram the chip via ISP](https://www.reddit.com/r/olkb/comments/4rjzen/flashing_error_on_mac_os_x/d52rj8o/). This requires another device to be hooked up to a couple of exposed pins on the PCB. __[We now have a guide on ISP flashing](isp_flashing_guide.md)__ and [this is where things are on the Planck PCB](http://imgur.com/lvbxbHt).
11
12An example command to flash the board once things are hooked up is:
13
14 avrdude -c usbtiny -p m32u4 -U flash:w:planck_default_rev4.hex
15
16Research is still being done on why this happens, but here are some cases:
17
18* [`make -f Makefile.rn42 dfu` and not the dfu-programmer commands worked for @tybenz](https://github.com/tmk/tmk_keyboard/issues/316) - also see [the hhkb keyboard on tmk](https://github.com/tmk/tmk_keyboard/tree/master/keyboard/hhkb)
19* [Doing a force erase works here](https://geekhack.org/index.php?topic=12047.msg1520147#msg1520147)
20* [`dfu-programmer atmega32u4 erase --force` works here as well](https://forum.fhem.de/index.php?topic=29777.0) [DE]
21* [Unresolved, but some data dumps](https://github.com/dfu-programmer/dfu-programmer/issues/29) \ No newline at end of file
diff --git a/docs/other_projects.md b/docs/other_projects.md
deleted file mode 100644
index bf980b0a9..000000000
--- a/docs/other_projects.md
+++ /dev/null
@@ -1,62 +0,0 @@
1Other Keyboard Firmware Projects
2================================
3## PJRC USB Keyboard/Mouse Example[USB][PJRC][Teensy][AVR]
4- <http://www.pjrc.com/teensy/usb_keyboard.html>
5- <http://www.pjrc.com/teensy/usb_mouse.html>
6
7## kbupgrade[USB][V-USB][AVR]
8- <http://github.com/rhomann/kbupgrade>
9- <http://geekhack.org/showwiki.php?title=Island:8406>
10
11## c64key[USB][V-USB][AVR]
12- <http://symlink.dk/projects/c64key/>
13
14## rump[USB][V-USB][AVR]
15- <http://mg8.org/rump/>
16- <http://github.com/clee/rump>
17
18## dulcimer[USB][V-USB][AVR]
19- <http://www.schatenseite.de/dulcimer.html>
20
21## humblehacker-keyboard[USB][LUFA][AVR][Ergo]
22- <http://github.com/humblehacker>
23- <http://www.humblehacker.com/keyboard/>
24- <http://geekhack.org/showwiki.php?title=Island:6292>
25
26## ps2avr[PS/2][AVR]
27- <http://sourceforge.net/projects/ps2avr/>
28
29## ErgoDox[Ergo][Split][USB][AVR]
30- <http://geekhack.org/index.php?topic=22780.0>
31- <https://github.com/benblazak/ergodox-firmware>
32- <https://github.com/cub-uanic/tmk_keyboard>
33
34## Suka's keyboard collection[Ergo][Split][3DPrinting][USB][AVR]
35- <http://deskthority.net/workshop-f7/my-diy-keyboard-collection-or-how-i-became-a-kb-geek-t2534.html>
36- <https://github.com/frobiac/adnw>
37
38## bpiphany's AVR-Keyboard[PJRC][AVR][USB]
39- <https://github.com/BathroomEpiphanies/AVR-Keyboard>
40- <http://deskthority.net/wiki/HID_Liberation_Device_-_DIY_Instructions>
41- <http://deskthority.net/wiki/Phantom>
42
43## USB-USB keyboard remapper[converter][USB-USB][AVR][Arduino]
44- <http://forum.colemak.com/viewtopic.php?pid=10837>
45- <https://github.com/darkytoothpaste/keymapper>
46
47## USB-USB converter threads[converter][USB-USB]
48- <http://deskthority.net/workshop-f7/is-remapping-a-usb-keyboard-using-teensy-possible-t2841-30.html>
49- <http://geekhack.org/index.php?topic=19458.0>
50
51## kbdbabel.org[converter][vintage][protocol][8051]
52Great resource of vintage keyboard protocol information and code
53
54- <http://www.kbdbabel.org/>
55
56## Haata's kiibohd Controller[converter][vintage][protocol][AVR][PJRC][Cortex]
57A lots of vintage keyboard protocol supports
58
59- <http://gitorious.org/kiibohd-controller>
60
61## Kinesis ergonomic keyboard firmware replacement[V-USB][LUFA][Ergo]
62- <https://github.com/chrisandreae/kinesis-firmware>
diff --git a/docs/pcb_guide.md b/docs/pcb_guide.md
deleted file mode 100644
index e07a11488..000000000
--- a/docs/pcb_guide.md
+++ /dev/null
@@ -1,151 +0,0 @@
1# Planck Firmware Guide
2
3## Setting up the environment
4
5### Windows
61. Install [MHV AVR Tools](https://infernoembedded.com/sites/default/files/project/MHV_AVR_Tools_20131101.exe). Disable smatch, but **be sure to leave the option to add the tools to the PATH checked**.
72. Install [MinGW](https://sourceforge.net/projects/mingw/files/Installer/mingw-get-setup.exe/download). During installation, uncheck the option to install a graphical user interface. **DO NOT change the default installation folder.** The scripts depend on the default location.
83. Clone this repository. [This link will download it as a zip file, which you'll need to extract.](https://github.com/qmk/qmk_firmware/archive/master.zip) Open the extracted folder in Windows Explorer.
94. Right-click on the 1-setup-path-win batch script, select "Run as administrator", and accept the User Account Control prompt. Press the spacebar to dismiss the success message in the command prompt that pops up.
105. Right-click on the 2-setup-environment-win batch script, select "Run as administrator", and accept the User Account Control prompt. This part may take a couple of minutes, and you'll need to approve a driver installation, but once it finishes, your environment is complete!
11
12
13### Mac
14
15If you're using homebrew, you can use the following commands:
16
17 brew tap osx-cross/avr
18 brew install avr-libc
19 brew install dfu-programmer
20
21Otherwise, these instructions will work:
22
231. Install Xcode from the App Store.
242. Install the Command Line Tools from `Xcode->Preferences->Downloads`.
253. Install [DFU-Programmer][dfu-prog].
26
27### Linux
281. Install AVR GCC with your favorite package manager.
292. Install [DFU-Programmer][dfu-prog].
30
31Note that, since it will be directly accessing USB hardware, the
32`dfu-programmer` program needs to be run as root.
33
34## Verify Your Installation
351. Clone the following repository: https://github.com/qmk/qmk_firmware
362. Open a Terminal and `cd` into `qmk_firmware/keyboards/planck`
373. Run `make`. This should output a lot of information about the build process.
38
39## Using the built-in functions
40
41Here is a list of some of the functions available from the command line:
42
43* `make clean`: clean the environment - may be required in-between builds
44* `make`: compile the code
45* `make KEYMAP=<keymap>`: compile with the extended keymap file `extended_keymaps/extended_keymap_<keymap>.c`
46* `make dfu`: build and flash the layout to the PCB
47* `make dfu-force`: build and force-flash the layout to the PCB (may be require for first flash)
48
49Generally, the instructions to flash the PCB are as follows:
50
511. Make changes to the appropriate keymap file
522. Save the file
533. `make clean`
544. Press the reset button on the PCB/press the key with the `RESET` keycode
555. `make <arguments> dfu` - use the necessary `KEYMAP=<keymap>` and/or `COMMON=true` arguments here.
56
57## Troubleshooting
58If you see something like this
59
60 0 [main] sh 13384 sync_with_child: child 9716(0x178) died before initialization with status code 0xC0000142
61 440 [main] sh 13384 sync_with_child: *** child state waiting for longjmp
62 /usr/bin/sh: fork: Resource temporarily unavailable
63
64after running 'make' on Windows than you are encountering a very popular issue with WinAVR on Windows 8.1 and 10.
65You can easily fix this problem by replacing msys-1.0.dll in WinAVR/utils/bin with [this one](http://www.madwizard.org/download/electronics/msys-1.0-vista64.zip).
66Restart your system and everything should work fine!
67
68
69If you see this
70
71 dfu-programmer atmega32u4 erase
72 process_begin: CreateProcess(NULL, dfu-programmer atmega32u4 erase, ...) failed.
73 make (e=2): The system cannot find the file specified.
74 make: *** [dfu] Error 2
75
76when trying to 'make dfu' on Windows you need to copy the dfu-programmer.exe to qmk_firmware/keyboards/planck.
77
78
79## Quantum MK Firmware
80
81### Keymap
82
83Unlike the other keymaps, prefixing the keycodes with `KC_` is required. A full list of the keycodes is available [here](https://github.com/qmk/qmk_firmware/blob/master/tmk_core/doc/keycode.txt). For the keycodes available only in the extended keymap, see this [header file](https://github.com/qmk/qmk_firmware/blob/master/quantum/keymap_common.h).
84
85You can use modifiers with keycodes like this:
86
87 LCTL(KC_C)
88
89Which will generate Ctrl+c. These are daisy-chainable, meaning you can do things like:
90
91 LCTL(LALT(KC_C))
92
93That will generate Ctrl+Alt+c. The entire list of these functions is here:
94
95* `LCTL()`: Left control
96* `LSFT()` / `S()`: Left shift
97* `LALT()`: Left alt/opt
98* `LGUI()`: Left win/cmd
99* `RCTL()`: Right control
100* `RSFT()`: Right shift
101* `RALT()`: Right alt/opt
102* `RGUI()`: Right win/cmd
103
104`S(KC_1)`-like entries are useful in writing keymaps for the Planck.
105
106### Other keycodes
107
108A number of other keycodes have been added that you may find useful:
109
110* `CM_<key>`: the Colemak equivalent of a key (in place of `KC_<key>`), when using Colemak in software (`CM_O` generates `KC_SCLN`)
111* `RESET`: jump to bootloader for flashing (same as press the reset button)
112* `BL_STEP`: step through the backlight brightnesses
113* `BL_<0-15>`: set backlight brightness to 0-15
114* `BL_DEC`: lower the backlight brightness
115* `BL_INC`: raise the backlight brightness
116* `BL_TOGG`: toggle the backlight on/off
117
118### Function layers
119
120The extended keymap extends the number of function layers from 32 to the near-infinite value of 256. Rather than using `FN<num>` notation (still available, but limited to `FN0`-`FN31`), you can use the `FUNC(<num>)` notation. `F(<num>)` is a shortcut for this.
121
122The function actions are unchanged, and you can see the full list of them [here](https://github.com/qmk/qmk_firmware/blob/master/tmk_core/common/action_code.h). They are explained in detail [here](keymap.md#2-action).
123
124### Macros
125
126Macros have been setup in the `keymaps/keymap_default.c` file so that you can use `M(<num>)` to access a macro in the `action_get_macro` section on your keymap. The switch/case structure you see here is required, and is setup for `M(0)` - you'll need to copy and paste the code to look like this (e.g. to support `M(3)`):
127
128 switch(id) {
129 case 0:
130 return MACRODOWN(TYPE(KC_A), END);
131 break;
132 case 1:
133 return MACRODOWN(TYPE(KC_B), END);
134 break;
135 case 2:
136 return MACRODOWN(TYPE(KC_C), END);
137 break;
138 case 3:
139 return MACRODOWN(TYPE(KC_D), END);
140 break;
141 }
142 return MACRO_NONE;
143
144`MACRODOWN()` is a shortcut for `(record->event.pressed ? MACRO(__VA_ARGS__) : MACRO_NONE)` which tells the macro to execute when the key is pressed. Without this, the macro will be executed on both the down and up stroke.
145
146[cygwin]: https://www.cygwin.com/
147[mingw]: http://www.mingw.org/
148[mhv]: https://infernoembedded.com/products/avr-tools
149[winavr]: http://winavr.sourceforge.net/
150[crosspack]: http://www.obdev.at/products/crosspack/index.html
151[dfu-prog]: http://dfu-programmer.sourceforge.net/
diff --git a/docs/previously_asked_questions.asciidoc b/docs/previously_asked_questions.asciidoc
deleted file mode 100644
index 36af1f203..000000000
--- a/docs/previously_asked_questions.asciidoc
+++ /dev/null
@@ -1,14 +0,0 @@
1= Previously Asked Questions
2:toc:
3:toc-placement: preamble
4
5toc::[]
6
7= Question thread
8http://deskthority.net/workshop-f7/how-to-build-your-very-own-keyboard-firmware-t7177-270.html
9
10= Questions
11== Columns beyond 16(uint16_t) cannot be read
12* https://github.com/tmk/tmk_keyboard/wiki/FAQ#cant-read-comlumn-of-matrix-beyond-16
13* http://deskthority.net/workshop-f7/how-to-build-your-very-own-keyboard-firmware-t7177-270.html#p247051
14* http://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279
diff --git a/docs/report_descriptor.md b/docs/report_descriptor.md
deleted file mode 100644
index fd5e96c67..000000000
--- a/docs/report_descriptor.md
+++ /dev/null
@@ -1 +0,0 @@
1# Get Report Descriptor with lsusb \ No newline at end of file
diff --git a/docs/test_for_asciidoc.asciidoc b/docs/test_for_asciidoc.asciidoc
deleted file mode 100644
index ce57d2781..000000000
--- a/docs/test_for_asciidoc.asciidoc
+++ /dev/null
@@ -1,17 +0,0 @@
1
2
3
4.Makefile
5[source,Makefile]
6----
7# Build Options
8# comment out to disable the options.
9#
10BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
11MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
12EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
13CONSOLE_ENABLE = yes # Console for debug(+400)
14COMMAND_ENABLE = yes # Commands for debug and configuration
15#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
16NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
17---- \ No newline at end of file
diff --git a/docs/tmk_based_projects.md b/docs/tmk_based_projects.md
deleted file mode 100644
index 0597b04c3..000000000
--- a/docs/tmk_based_projects.md
+++ /dev/null
@@ -1,34 +0,0 @@
1## TMK based projects
2Add your project here!
3See https://github.com/tmk/tmk_keyboard/issues/173
4
5### keyboards
6**S60-X**: [DIY 60% keyboard](https://www.massdrop.com/buy/sentraq-60-diy-keyboard-kit?mode=guest_open) designed by [VinnyCordeiro](https://github.com/VinnyCordeiro) for Sentraq:
7- https://github.com/VinnyCordeiro/tmk_keyboard
8
9**Octagon V1**: Korean custom keyboard designed by Duck.
10- https://github.com/xauser/tmk_keyboard/tree/xauser
11
12**Compact L3**: Custom keyboard designed by LifeZone and LeeKu.
13- https://github.com/xauser/tmk_keyboard/tree/xauser
14
15**KMAC, 1,2 and Happy**: Custom keyboard designed by kbdmania.
16- https://github.com/ageaenes/tmk_keyboard
17
18**P60**: [DIY wired 60% keyboard](https://imgur.com/a/zwsDN) by [p3lim](https://github.com/p3lim).
19- https://github.com/p3lim/keyboard_firmware
20
21**Nerd, Kitten Paw, Lightsaber, Phantom, Lightpad, Ergodox** on [xauser](https://github.com/xauser)'s repository
22- https://github.com/xauser/tmk_keyboard/tree/xauser
23
24**ErgoDox** on [cub-unanic](https://github.com/cub-uanic)'s repository
25- https://github.com/cub-uanic/tmk_keyboard/tree/master/keyboard/ergodox
26
27**Atreus** by [technomancy](https://atreus.technomancy.us)
28- https://github.com/technomancy/tmk_keyboard/tree/atreus/keyboard/atreus
29
30**[mcdox](https://github.com/DavidMcEwan/mcdox)**
31- https://github.com/DavidMcEwan/tmk_keyboard/tree/master/keyboard/mcdox
32
33
34### converters \ No newline at end of file
diff --git a/docs/tmk_own_projects.md b/docs/tmk_own_projects.md
deleted file mode 100644
index fb5b2c990..000000000
--- a/docs/tmk_own_projects.md
+++ /dev/null
@@ -1,69 +0,0 @@
1## TMK own projects by hasu
2Located in [tmk_keyboard](https://github.com/tmk/tmk_keyboard/tree/master/) repository.
3
4### converter
5* [ps2_usb] - [PS/2 keyboard to USB][GH_ps2]
6* [adb_usb] - [ADB keyboard to USB][GH_adb]
7* [m0110_usb] - [Macintosh 128K/512K/Plus keyboard to USB][GH_m0110]
8* [terminal_usb] - [IBM Model M terminal keyboard(PS/2 scancode set3) to USB][GH_terminal]
9* [news_usb] - [Sony NEWS keyboard to USB][GH_news]
10* [x68k_usb] - [Sharp X68000 keyboard to USB][GH_x68k]
11* [sun_usb] - [Sun] to USB(type4, 5 and 3?)
12* [pc98_usb] - [PC98] to USB
13* [usb_usb] - USB to USB(experimental)
14* [ascii_usb] - ASCII(Serial console terminal) to USB
15* [ibm4704_usb] - [IBM 4704 keyboard Converter][GH_ibm4704]
16
17### keyboard
18* [hhkb] - [Happy Hacking Keyboard pro][GH_hhkb]
19* [gh60] - [GH60][GH60_diy] DIY 60% keyboard [prototype][GH60_proto]
20* [hbkb] - [Happy Buckling spring keyboard][GH_hbkb](IBM Model M 60% mod)
21* [hid_liber] - [HID liberation][HID_liber] controller (by alaricljs)
22* [phantom] - [Phantom] keyboard (by Tranquilite)
23* [IIgs_Standard] - Apple [IIGS] keyboard mod(by JeffreySung)
24* [macway] - [Compact keyboard mod][GH_macway] [retired]
25* [KMAC] - Korean custom keyboard
26* [Lightsaber] - Korean custom keyboard
27
28[ps2_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/ps2_usb/
29[adb_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/adb_usb/
30[m0110_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/m0110_usb
31[terminal_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/terminal_usb/
32[news_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/news_usb/
33[x68k_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/x68k_usb/
34[sun_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/sun_usb/
35[pc98_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/pc98_usb/
36[usb_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/usb_usb/
37[ascii_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/ascii_usb/
38[ibm4704_usb]: https://github.com/tmk/tmk_keyboard/tree/master/converter/ibm4704_usb
39[hhkb]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/hhkb/
40[gh60]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/gh60/
41[hbkb]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/hbkb/
42[hid_liber]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/hid_liber/
43[phantom]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/phantom/
44[IIgs_Standard]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/IIgs/
45[macway]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/macway/
46[KMAC]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/kmac/
47[Lightsaber]: https://github.com/tmk/tmk_keyboard/tree/master/keyboard/lightsaber/
48
49[GH_macway]: http://geekhack.org/showwiki.php?title=Island:11930
50[GH_hhkb]: http://geekhack.org/showwiki.php?title=Island:12047
51[GH_ps2]: http://geekhack.org/showwiki.php?title=Island:14618
52[GH_adb]: http://geekhack.org/showwiki.php?title=Island:14290
53[GH_hhkb_bt]: http://geekhack.org/showwiki.php?title=Island:20851
54[GH_m0110]: http://geekhack.org/showwiki.php?title=Island:24965
55[GH_news]: http://geekhack.org/showwiki.php?title=Island:25759
56[GH_terminal]: http://geekhack.org/showwiki.php?title=Island:27272
57[GH_x68k]: http://geekhack.org/showwiki.php?title=Island:29060
58[GH_hbkb]: http://geekhack.org/showwiki.php?title=Island:29483
59[GH_ibm4704]: http://geekhack.org/index.php?topic=54706.0
60[HID_liber]: http://deskthority.net/wiki/HID_Liberation_Device_-_DIY_Instructions
61[Phantom]: http://geekhack.org/index.php?topic=26742
62[GH60_diy]: http://geekhack.org/index.php?topic=34959
63[GH60_proto]: http://geekhack.org/index.php?topic=37570.0
64[PC98]: http://en.wikipedia.org/wiki/NEC_PC-9801
65[Sun]: http://en.wikipedia.org/wiki/Sun-3
66[IIGS]: http://en.wikipedia.org/wiki/Apple_IIGS
67
68
69See other [[TMK Based Projects]] \ No newline at end of file
diff --git a/docs/tmk_readme.md b/docs/tmk_readme.md
deleted file mode 100644
index 85cf68d57..000000000
--- a/docs/tmk_readme.md
+++ /dev/null
@@ -1,243 +0,0 @@
1# TMK Documenation
2
3Features
4--------
5These features can be used in your keyboard.
6
7* Multi-layer Keymap - Multiple keyboard layouts with layer switching
8* Mouse key - Mouse control with keyboard
9* System Control Key - Power Down, Sleep, Wake Up and USB Remote Wake up
10* Media Control Key - Volume Down/Up, Mute, Next/Prev track, Play, Stop and etc
11* USB NKRO - 120 keys(+ 8 modifiers) simultaneously
12* PS/2 mouse support - PS/2 mouse(TrackPoint) as composite device
13* Keyboard protocols - PS/2, ADB, M0110, Sun and other old keyboard protocols
14* User Function - Customizable function of key with writing code
15* Macro - Very primitive at this time
16* Keyboard Tricks - Oneshot modifier and modifier with tapping feature
17* Debug Console - Messages for debug and interaction with firmware
18* Virtual DIP Switch - Configurations stored EEPROM(Boot Magic)
19* Locking CapsLock - Mechanical switch support for CapsLock
20* Breathing Sleep LED - Sleep indicator with charm during USB suspend
21* Backlight - Control backlight levels
22
23
24
25Projects
26--------
27You can find some keyboard specific projects under `converter` and `keyboard` directory.
28
29## Main projects
30
31### OLKB products
32* [planck](keyboards/planck/) - [Planck] Ortholinear 40% keyboard
33* [preonic](keyboards/preonic/) - [Preonic] Ortholinear 50% keyboard
34* [atomic](keyboards/atomic/) - [Atomic] Ortholinear 60% keyboard
35
36### Ergodox EZ
37* [ergodox_ez](keyboards/ergodox/ez) - [Ergodox_EZ] Assembled split keyboard
38
39## Other projects
40
41### converter
42* [ps2_usb](converter/ps2_usb/) - [PS/2 keyboard to USB][GH_ps2]
43* [adb_usb](converter/adb_usb/) - [ADB keyboard to USB][GH_adb]
44* [m0110_usb](converter/m0110_usb) - [Macintosh 128K/512K/Plus keyboard to USB][GH_m0110]
45* [terminal_usb](converter/terminal_usb/) - [IBM Model M terminal keyboard(PS/2 scancode set3) to USB][GH_terminal]
46* [news_usb](converter/news_usb/) - [Sony NEWS keyboard to USB][GH_news]
47* [x68k_usb](converter/x68k_usb/) - [Sharp X68000 keyboard to USB][GH_x68k]
48* [sun_usb](converter/sun_usb/) - [Sun] to USB(type4, 5 and 3?)
49* [pc98_usb](converter/pc98_usb/) - [PC98] to USB
50* [usb_usb](converter/usb_usb/) - USB to USB(experimental)
51* [ascii_usb](converter/ascii_usb/) - ASCII(Serial console terminal) to USB
52* [ibm4704_usb](converter/ibm4704_usb) - [IBM 4704 keyboard Converter][GH_ibm4704]
53
54### keyboard
55* [hhkb](keyboards/hhkb/) - [Happy Hacking Keyboard pro][GH_hhkb] hasu's main board
56* [gh60](keyboards/gh60/) - [GH60] DIY 60% keyboard [prototype][GH60_proto] hasu's second board
57* [hbkb](keyboards/hbkb/) - [Happy Buckling spring keyboard][GH_hbkb](IBM Model M 60% mod)
58* [hid_liber](keyboards/hid_liber/) - [HID liberation][HID_liber] controller (by alaricljs)
59* [phantom](keyboards/phantom/) - [Phantom] keyboard (by Tranquilite)
60* [IIgs_Standard](keyboards/IIgs/) - Apple [IIGS] keyboard mod(by JeffreySung)
61* [macway](keyboards/macway/) - [Compact keyboard mod][GH_macway] [retired]
62* [KMAC](keyboards/kmac/) - Korean custom keyboard
63* [Lightsaber](keyboards/lightsaber/) - Korean custom keyboard
64* [Infinity](keyboards/infinity/) - Massdrop [Infinity keyboard][Infinity]
65* [NerD](keyboards/nerd/) - Korean custom keyboard
66* [KittenPaw](keyboards/kitten_paw) - Custom Majestouch controller
67* [Lightpad](keyboards/lightpad) - Korean custom keypad
68* [ghost_squid](keyboards/ghost_squid/) - [The Ghost Squid][ghost_squid] controller for [Cooler Master QuickFire XT][cmxt]
69
70### Extenal projects using tmk_keyboard
71* [ErgoDox_cub-uanic][cub-uanic] - Split Ergonomic Keyboard [ErgoDox][ergodox_org]
72* [mcdox][mcdox_tmk] - [mcdox][mcdox]
73
74
75[GH_macway]: http://geekhack.org/showwiki.php?title=Island:11930
76[GH_hhkb]: http://geekhack.org/showwiki.php?title=Island:12047
77[GH_ps2]: http://geekhack.org/showwiki.php?title=Island:14618
78[GH_adb]: http://geekhack.org/showwiki.php?title=Island:14290
79[GH_hhkb_bt]: http://geekhack.org/showwiki.php?title=Island:20851
80[GH_m0110]: http://geekhack.org/showwiki.php?title=Island:24965
81[GH_news]: http://geekhack.org/showwiki.php?title=Island:25759
82[GH_terminal]: http://geekhack.org/showwiki.php?title=Island:27272
83[GH_x68k]: http://geekhack.org/showwiki.php?title=Island:29060
84[GH_hbkb]: http://geekhack.org/showwiki.php?title=Island:29483
85[GH_ibm4704]: http://geekhack.org/index.php?topic=54706.0
86[HID_liber]: http://deskthority.net/wiki/HID_Liberation_Device_-_DIY_Instructions
87[Phantom]: http://geekhack.org/index.php?topic=26742
88[GH60]: http://geekhack.org/index.php?topic=34959
89[GH60_proto]: http://geekhack.org/index.php?topic=37570.0
90[PC98]: http://en.wikipedia.org/wiki/NEC_PC-9801
91[Sun]: http://en.wikipedia.org/wiki/Sun-3
92[IIGS]: http://en.wikipedia.org/wiki/Apple_IIGS
93[Infinity]: https://www.massdrop.com/buy/infinity-keyboard-kit
94[ghost_squid]: http://deskthority.net/wiki/Costar_replacement_controllers#The_Ghost_Squid
95[cmxt]: http://gaming.coolermaster.com/en/products/keyboard/quickfirext/
96[ergodox_org]: http://ergodox.org/
97[cub-uanic]: https://github.com/cub-uanic/tmk_keyboard/tree/master/keyboard/ergodox
98[mcdox]: https://github.com/DavidMcEwan/mcdox
99[mcdox_tmk]: https://github.com/DavidMcEwan/tmk_keyboard/tree/master/keyboard/mcdox
100[Planck]: http://olkb.co/planck
101[Preonic]: http://olkb.co/preonic
102[Atomic]: http://olkb.co/atomic
103[Ergodox_EZ]: https://www.indiegogo.com/projects/ergodox-ez-an-incredible-mechanical-keyboard
104
105
106License
107-------
108**GPLv2** or later. Some protocol files are under **Modified BSD License**.
109
110Third party libraries like LUFA, PJRC and V-USB have their own license respectively.
111
112
113
114Build Firmware and Program Controller
115-------------------------------------
116See [build environment setup](build_environment_setup.md), or the readme in the particular keyboards/* folder.
117
118
119
120Change your keymap
121------------------
122See [keymap.md](keymap.md).
123
124
125
126Magic Commands
127--------------
128To see help press `Magic` + `H`.
129
130`Magic` key combination is `LShift` + `RShift` in many project, but `Power` key on ADB converter.
131`Magic` keybind can be vary on each project, check `config.h` in project directory.
132
133Following commands can be also executed with `Magic` + key. In console mode `Magic` keybind is not needed.
134
135 ----- Command Help -----
136 c: enter console mode
137 d: toggle debug enable
138 x: toggle matrix debug
139 k: toggle keyboard debug
140 m: toggle mouse debug
141 v: print device version & info
142 t: print timer count
143 s: print status
144 e: print eeprom config
145 n: toggle NKRO
146 0/F10: switch to Layer0
147 1/F1: switch to Layer1
148 2/F2: switch to Layer2
149 3/F3: switch to Layer3
150 4/F4: switch to Layer4
151 PScr: power down/remote wake-up
152 Caps: Lock Keyboard(Child Proof)
153 Paus: jump to bootloader
154
155
156
157Boot Magic Configuration - Virtual DIP Switch
158---------------------------------------------
159Boot Magic are executed during boot up time. Press Magic key below then plug in keyboard cable.
160Note that you must use keys of **Layer 0** as Magic keys. These settings are stored in EEPROM so that retain your configure over power cycles.
161
162To avoid configuring accidentally additive salt key `KC_SPACE` also needs to be pressed along with the following configuration keys. The salt key is configurable in `config.h`. See [tmk_core/common/bootmagic.h](/tmk_core/common/bootmagic.h).
163
164#### General
165- Skip reading EEPROM to start with default configuration(`ESC`)
166- Clear configuration stored in EEPROM to reset configuration(`Backspace`)
167
168#### Bootloader
169- Kick up Bootloader(`B`)
170
171#### Debug
172- Debug enable(`D`)
173- Debug matrix enable(`D`+`X`)
174- Debug keyboard enable(`D`+`K`)
175- Debug mouse enable(`D`+`M`)
176
177#### Keymap
178- Swap Control and CapsLock(`Left Control`)
179- Change CapsLock to Control(`Caps Lock`)
180- Swap LeftAlt and Gui(`Left Alt`)
181- Swap RightAlt and Gui(`Right Alt`)
182- Disable Gui(`Left Gui`)
183- Swap Grave and Escape(`Grave`)
184- Swap BackSlash and BackSpace(`Back Slash`)
185- Enable NKRO on boot(`N`)
186
187#### Default Layer
188- Set Default Layer to 0(`0`)
189- Set Default Layer to 1(`1`)
190- Set Default Layer to 2(`2`)
191- Set Default Layer to 3(`3`)
192- Set Default Layer to 4(`4`)
193- Set Default Layer to 5(`5`)
194- Set Default Layer to 6(`6`)
195- Set Default Layer to 7(`7`)
196
197
198
199Mechanical Locking support
200--------------------------
201This feature makes it possible for you to use mechanical locking switch for `CapsLock`, `NumLock`
202or `ScrollLock`. To enable this feature define these macros in `config.h` and use `KC_LCAP`, `KC_LN
203UM` or `KC_LSCR` in keymap for locking key instead of normal `KC_CAPS`, `KC_NLCK` or `KC_SLCK`. Res
204ync option tries to keep switch state consistent with keyboard LED state.
205
206 #define LOCKING_SUPPORT_ENABLE
207 #define LOCKING_RESYNC_ENABLE
208
209
210
211Start Your Own Project
212-----------------------
213**TBD**
214
215
216
217Debugging
218--------
219Use PJRC's `hid_listen` to see debug messages. You can use the tool for debug even if firmware use LUFA stack.
220
221You can use xprintf() to display debug info on `hid_listen`, see `tmk_core/common/xprintf.h`.
222
223
224
225Files and Directories
226-------------------
227### Top
228* tmk_core/ - core library
229* keyboards/ - keyboard projects
230* converter/ - protocol converter projects
231* doc/ - documents
232
233
234
235Coding Style
236-------------
237- Doesn't use Tab to indent, use 4-spaces instead.
238
239
240
241Other Keyboard Firmware Projects
242------------------
243You can learn a lot about keyboard firmware from these. See [docs/other_projects.md](other_projects.md).
diff --git a/docs/usb_hid.md b/docs/usb_hid.md
deleted file mode 100644
index 1d0c45869..000000000
--- a/docs/usb_hid.md
+++ /dev/null
@@ -1,11 +0,0 @@
1# Getting Report Descriptor
2```
3 $ cd /sys/bus/usb/drivers/usbhid
4 $ ls
5 1-1.3.4:1.0 1-1.3.4:1.2 bind new_id uevent
6 1-1.3.4:1.1 1-1.3.4:1.3 module remove_id unbind
7 $ echo -n 1-1.4\:1.0 | sudo tee unbind
8 $ sudo lsusb -vvv -d 046d:c01d
9 $ echo -n 1-1.4\:1.0 | sudo tee bind
10```
11