diff options
| author | tmk <nobody@nowhere> | 2013-04-07 16:47:01 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-04-07 16:47:01 +0900 |
| commit | de7b46cd7db2928d342a0c3e06f03c19e96f984b (patch) | |
| tree | 090e27b9b45beb4260860937b5aee7195129eadc | |
| parent | e59fb6f908e3e05ed135bf6d004524b0b6bf9119 (diff) | |
| download | qmk_firmware-de7b46cd7db2928d342a0c3e06f03c19e96f984b.tar.gz qmk_firmware-de7b46cd7db2928d342a0c3e06f03c19e96f984b.zip | |
Add coding style and config.h options
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | doc/build.md | 15 |
2 files changed, 21 insertions, 0 deletions
| @@ -273,6 +273,12 @@ Files and Directories | |||
| 273 | 273 | ||
| 274 | 274 | ||
| 275 | 275 | ||
| 276 | Conding Style | ||
| 277 | ------------- | ||
| 278 | - Doesn't use Tab to indent, use 4-spaces instead. | ||
| 279 | |||
| 280 | |||
| 281 | |||
| 276 | Other Keyboard Firmware Projects | 282 | Other Keyboard Firmware Projects |
| 277 | ------------------ | 283 | ------------------ |
| 278 | See [doc/other_projects.md](doc/other_projects.md). | 284 | See [doc/other_projects.md](doc/other_projects.md). |
diff --git a/doc/build.md b/doc/build.md index 5185e8032..88504f096 100644 --- a/doc/build.md +++ b/doc/build.md | |||
| @@ -160,5 +160,20 @@ Config.h Options | |||
| 160 | /* Locking CapsLock resynchronize hack */ | 160 | /* Locking CapsLock resynchronize hack */ |
| 161 | #define CAPSLOCK_LOCKING_RESYNC_ENABLE | 161 | #define CAPSLOCK_LOCKING_RESYNC_ENABLE |
| 162 | 162 | ||
| 163 | ### 3. Disable Debug and Print | ||
| 163 | 164 | ||
| 165 | /* disable debug print */ | ||
| 166 | #define NO_DEBUG | ||
| 164 | 167 | ||
| 168 | /* disable print */ | ||
| 169 | #define NO_PRINT | ||
| 170 | |||
| 171 | ### 4. Disable Action Features | ||
| 172 | |||
| 173 | #define NO_ACTION_LAYER | ||
| 174 | #define NO_ACTION_TAPPING | ||
| 175 | #define NO_ACTION_ONESHOT | ||
| 176 | #define NO_ACTION_MACRO | ||
| 177 | #define NO_ACTION_FUNCTION | ||
| 178 | |||
| 179 | ***TBD*** | ||
