]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
remove SERIAL_SOFT_DEBUG macro
authorduanhongyi <duanhongyi@users.noreply.github.com>
Thu, 14 Jan 2016 07:27:26 +0000 (15:27 +0800)
committerduanhongyi <duanhongyi@users.noreply.github.com>
Thu, 14 Jan 2016 07:27:26 +0000 (15:27 +0800)
SERIAL_SOFT_DEBUG can be defined in the `config.h`

tmk_core/protocol/serial_soft.c

index 44822b7e43e2500daabb11a5c3faa49a1c3b2ce1..569205bf302262306c017e5db338c6bad437217e 100644 (file)
@@ -68,7 +68,6 @@ POSSIBILITY OF SUCH DAMAGE.
 #endif
 
 /* debug for signal timing, see debug pin with oscilloscope */
-#define SERIAL_SOFT_DEBUG
 #ifdef SERIAL_SOFT_DEBUG
     #define SERIAL_SOFT_DEBUG_INIT()    (DDRD |= 1<<7)
     #define SERIAL_SOFT_DEBUG_TGL()     (PORTD ^= 1<<7)
@@ -176,7 +175,7 @@ void serial_send(uint8_t data)
 ISR(SERIAL_SOFT_RXD_VECT)
 {
     SERIAL_SOFT_DEBUG_TGL();
-    SERIAL_SOFT_RXD_INT_ENTER()
+    SERIAL_SOFT_RXD_INT_ENTER();
 
     uint8_t data = 0;