Skip to content

Commit c1b891b

Browse files
committed
Merge pull request #295 from doopai/master
remove SERIAL_SOFT_DEBUG macro
2 parents 1da837c + 4b99fed commit c1b891b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

protocol/serial_soft.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ POSSIBILITY OF SUCH DAMAGE.
6868
#endif
6969

7070
/* debug for signal timing, see debug pin with oscilloscope */
71-
#define SERIAL_SOFT_DEBUG
7271
#ifdef SERIAL_SOFT_DEBUG
7372
#define SERIAL_SOFT_DEBUG_INIT() (DDRD |= 1<<7)
7473
#define SERIAL_SOFT_DEBUG_TGL() (PORTD ^= 1<<7)
@@ -176,7 +175,7 @@ void serial_send(uint8_t data)
176175
ISR(SERIAL_SOFT_RXD_VECT)
177176
{
178177
SERIAL_SOFT_DEBUG_TGL();
179-
SERIAL_SOFT_RXD_INT_ENTER()
178+
SERIAL_SOFT_RXD_INT_ENTER();
180179

181180
uint8_t data = 0;
182181

0 commit comments

Comments
 (0)