Clean up recent contribs

This commit is contained in:
Scott Lahteine
2018-10-16 06:45:44 -05:00
parent 8b5e51c9aa
commit cce4931342
3 changed files with 7 additions and 8 deletions

View File

@ -67,14 +67,16 @@ uint8_t HAL_get_reset_source(void) {
void watchdog_reset() {
WDT_Feed();
#if !defined(PINS_DEBUGGING) && PIN_EXISTS(LED)
#if DISABLED(PINS_DEBUGGING) && PIN_EXISTS(LED)
TOGGLE(LED_PIN); // heart beat indicator
#endif
}
#else
void HAL_clear_reset_source(void) {}
uint8_t HAL_get_reset_source(void) { return RST_POWER_ON; }
#endif // USE_WATCHDOG
#endif // TARGET_LPC1768