X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=doc%2Fbuild.md;h=2e8157e09cf3fe6aff1eb77769c34ccb1404b251;hb=37bf34d5b192aa7f64875eca8f6dc8af8f4b1347;hp=5185e8032b4a6c3b7b8e2649ae1b88beb281a9e8;hpb=78fd5a715464e72df08bcf683ca45b63c2df490f;p=max%2Ftmk_keyboard.git diff --git a/doc/build.md b/doc/build.md index 5185e803..2e8157e0 100644 --- a/doc/build.md +++ b/doc/build.md @@ -40,7 +40,7 @@ Move to project directory in the firmware source. Build firmware using GNU `make` command. You'll see `_.hex` file in that directory unless something unexpected occurs in build process. - mkae -f Makefile. clean + make -f Makefile. clean make -f Makefile. @@ -132,6 +132,7 @@ Optional. Note that ***comment out*** to disable them. COMMAND_ENABLE = yes # Commands for debug and configuration SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend #NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA + #BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality ### 3. Programmer Optional. 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 `Teesy Loader`. @@ -160,5 +161,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***