]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
Merge branch 'rn42' into merge_rn42
authortmk <nobody@nowhere>
Mon, 24 Nov 2014 04:50:33 +0000 (13:50 +0900)
committertmk <nobody@nowhere>
Mon, 24 Nov 2014 04:50:33 +0000 (13:50 +0900)
Conflicts:
.gitignore
common.mk
common/debug_config.h
common/print.h

1  2 
.gitignore
common.mk
common/action.c
common/avr/xprintf.h
common/debug.h
common/keyboard.c
protocol.mk

diff --cc .gitignore
index 0fd85b53143e75f8b4c4ebdee59d1d30520b2644,b79d72b7c7ae72142099d4e3b9efa6d3e54d7f99..f3f46872a07e990dcf0f8dca6c8de554d0fdce66
@@@ -8,4 -8,5 +8,6 @@@
  *.map
  *.sym
  tags
 +*~
+ build/
+ *.bak
diff --cc common.mk
index 1cffc3cc22c5d7b46adf24267a50c2d612f3b115,04f036477115de2a1410d5e7fb517ec3f2d2ed2c..b854f09cdbf98a0dd2d872d084140911e20c293e
+++ b/common.mk
@@@ -7,13 -7,12 +7,13 @@@ SRC +=        $(COMMON_DIR)/host.c 
        $(COMMON_DIR)/action_layer.c \
        $(COMMON_DIR)/action_util.c \
        $(COMMON_DIR)/keymap.c \
-       $(COMMON_DIR)/timer.c \
        $(COMMON_DIR)/print.c \
-       $(COMMON_DIR)/bootloader.c \
-       $(COMMON_DIR)/suspend.c \
-       $(COMMON_DIR)/xprintf.S \
-       $(COMMON_DIR)/util.c
 +      $(COMMON_DIR)/debug.c \
+       $(COMMON_DIR)/util.c \
+       $(COMMON_DIR)/avr/suspend.c \
+       $(COMMON_DIR)/avr/xprintf.S \
+       $(COMMON_DIR)/avr/timer.c \
+       $(COMMON_DIR)/avr/bootloader.c
  
  
  # Option modules
diff --cc common/action.c
Simple merge
Simple merge
diff --cc common/debug.h
index 8aaa5ed915e2b62a9ada6ff3b9e6b628cc21122c,26472c8fa3980725f8eea07e9568b3ee7eb749da..472dd478c407c4390600fc30dd89a2c747cb878c
@@@ -19,22 -19,54 +19,54 @@@ along with this program.  If not, see <
  #define DEBUG_H 1
  
  #include "print.h"
- #include "debug_config.h"
  
  
 -    uint8_t raw;
+ /* 
+  * Debug output control
+  */
+ #ifdef __cplusplus
+ extern "C" {
+ #endif
+ typedef union {
+     struct {
+         bool enable:1;
+         bool matrix:1;
+         bool keyboard:1;
+         bool mouse:1;
+         uint8_t reserved:4;
+     };
++    uint8_t raw;
+ } debug_config_t;
+ extern debug_config_t debug_config;
+ debug_config_t debug_config  __attribute__ ((weak)) = {};
+ #ifdef __cplusplus
+ }
+ #endif
+ #define debug_enable    (debug_config.enable)
+ #define debug_matrix    (debug_config.matrix)
+ #define debug_keyboard  (debug_config.keyboard)
+ #define debug_mouse     (debug_config.mouse)
+ /*
+  * Debug print utils
+  */
  #ifndef NO_DEBUG
  
- #define dprint(s)           do { if (debug_enable) print(s); } while (0)
- #define dprintln()          do { if (debug_enable) print_crlf(); } while (0)
- #define dprintf(fmt, ...)   do { if (debug_enable) __xprintf(PSTR(fmt), ##__VA_ARGS__); } while (0)
- #define dmsg(s)             dprintf("%s at %s: %S\n", __FILE__, __LINE__, PSTR(s))
- /* DO NOT USE these anymore */
- #define debug(s)                  do { if (debug_enable) print(s); } while (0)
- #define debugln(s)                do { if (debug_enable) print_crlf(); } while (0)
- #define debug_S(s)                do { if (debug_enable) print_S(s); } while (0)
- #define debug_P(s)                do { if (debug_enable) print_P(s); } while (0)
- #define debug_msg(s)              do { \
+ #define dprint(s)                   do { if (debug_enable) print(s); } while (0)
+ #define dprintln(s)                 do { if (debug_enable) println(s); } while (0)
+ #define dprintf(fmt, ...)           do { if (debug_enable) xprintf(fmt, ##__VA_ARGS__); } while (0)
+ #define dmsg(s)                     dprintf("%s at %s: %S\n", __FILE__, __LINE__, PSTR(s))
+ /* Deprecated. DO NOT USE these anymore, use dprintf instead. */
+ #define debug(s)                    do { if (debug_enable) print(s); } while (0)
+ #define debugln(s)                  do { if (debug_enable) println(s); } while (0)
+ #define debug_msg(s)                do { \
      if (debug_enable) { \
          print(__FILE__); print(" at "); print_dec(__LINE__); print(" in "); print(": "); print(s); \
      } \
Simple merge
diff --cc protocol.mk
Simple merge