mendel.c: Enable DEBUG_LED_PIN output if defined.
This commit is contained in:
parent
9d5d2a5492
commit
2bf98feaaa
5
mendel.c
5
mendel.c
|
|
@ -190,6 +190,11 @@ void io_init(void) {
|
||||||
WRITE(RX_ENABLE_PIN,0);
|
WRITE(RX_ENABLE_PIN,0);
|
||||||
disable_transmit();
|
disable_transmit();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef DEBUG_LED_PIN
|
||||||
|
WRITE(DEBUG_LED_PIN, 0);
|
||||||
|
SET_OUTPUT(DEBUG_LED_PIN);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Startup code, run when we come out of reset
|
/// Startup code, run when we come out of reset
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue