Aaeon PICO-HD01 Instrukcja Użytkownika Strona 83

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 104
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 82
PICO-ITX Board PICO-HD01
Appendix A Programming the Watchdog Timer A-4
AaeonWDTEnable();
}
*******************************************************************************
*******************************************************************************
// Procedure : AaeonWDTEnable
VOID AaeonWDTEnable (){
WDTEnableDisable(1);
}
// Procedure : AaeonWDTConfig
VOID AaeonWDTConfig (byte Counter, BOOLEAN Unit){
// Disable WDT counting
WDTEnableDisable(0);
// Clear Watchdog Timeout Status
WDTClearTimeoutStatus();
// WDT relative parameter setting
WDTParameterSetting(Timer, Unit);
}
VOID WDTEnableDisable(byte Value){
If (Value == 1)
WDTSetBit(TimerReg, EnableBit, 1);
else
WDTSetBit(TimerReg, EnableBit, 0);
}
VOID WDTParameterSetting(byte Counter, BOOLEAN Unit){
// Watchdog Timer counter setting
WDTWriteByte(CounterReg, Counter);
// WDT counting unit setting
WDTSetBit(TimerReg, UnitBit, Unit);
// WDT output mode set to pulse
WDTSetBit(TimerReg, ModeBit, ModeVal);
// WDT output mode set to active low
WDTSetBit(TimerReg, PolarityBit, PolarityVal);
// WDT output pulse width is 25ms
Przeglądanie stron 82
1 2 ... 78 79 80 81 82 83 84 85 86 87 88 ... 103 104

Komentarze do niniejszej Instrukcji

Brak uwag