ソースを参照

Stop watchdog before attempting reboot on Teensy 2.0

main
PaulStoffregen 10年前
コミット
9b857be028
1個のファイルの変更7行の追加0行の削除
  1. +7
    -0
      teensy/pins_teensy.c

+ 7
- 0
teensy/pins_teensy.c ファイルの表示

@@ -1662,10 +1662,17 @@ static void disable_peripherals(void)
#endif
}

#ifndef WDFR
#define WDFR 3
#endif

void _reboot_Teensyduino_(void)
{
cli();
// stop watchdog timer, if running
MCUSR &= ~(1<<WDFR);
WDTCSR |= (1<<WDCE);
WDTCSR = 0;
delayMicroseconds(5000);
UDCON = 1;
USBCON = (1<<FRZCLK);

読み込み中…
キャンセル
保存