We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1da837c + 4b99fed commit c1b891bCopy full SHA for c1b891b
protocol/serial_soft.c
@@ -68,7 +68,6 @@ POSSIBILITY OF SUCH DAMAGE.
68
#endif
69
70
/* debug for signal timing, see debug pin with oscilloscope */
71
-#define SERIAL_SOFT_DEBUG
72
#ifdef SERIAL_SOFT_DEBUG
73
#define SERIAL_SOFT_DEBUG_INIT() (DDRD |= 1<<7)
74
#define SERIAL_SOFT_DEBUG_TGL() (PORTD ^= 1<<7)
@@ -176,7 +175,7 @@ void serial_send(uint8_t data)
176
175
ISR(SERIAL_SOFT_RXD_VECT)
177
{
178
SERIAL_SOFT_DEBUG_TGL();
179
- SERIAL_SOFT_RXD_INT_ENTER()
+ SERIAL_SOFT_RXD_INT_ENTER();
180
181
uint8_t data = 0;
182
0 commit comments