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) |
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 +Conding Style +------------- +- Doesn't use Tab to indent, use 4-spaces instead. + + + Other Keyboard Firmware Projects ------------------ See [doc/other_projects.md](doc/other_projects.md). diff --git a/doc/build.md b/doc/build.md index 5185e8032b..88504f0965 100644 --- a/doc/build.md +++ b/doc/build.md @@ -160,5 +160,20 @@ Config.h Options /* Locking CapsLock resynchronize hack */ #define CAPSLOCK_LOCKING_RESYNC_ENABLE +### 3. Disable Debug and Print + /* disable debug print */ + #define NO_DEBUG + /* disable print */ + #define NO_PRINT + +### 4. Disable Action Features + + #define NO_ACTION_LAYER + #define NO_ACTION_TAPPING + #define NO_ACTION_ONESHOT + #define NO_ACTION_MACRO + #define NO_ACTION_FUNCTION + +***TBD*** |