68
SI-624-AI User Manual
if (bTime)
{ EnableWDT(bTime); }
else
{ DisableWDT(); }
return 0;
}
//---------------------------------------------------------------------------
void EnableWDT(int interval)
{
unsigned char bBuf;
bBuf = Get_F81966_Reg(0x2B);
bBuf &= (~0x20);
Set_F81966_Reg(0x2B, bBuf); //Enable WDTO
Set_F81966_LD(0x07);
//switch to logic device 7
Set_F81966_Reg(0x30, 0x01); //enable timer
bBuf = Get_F81966_Reg(0xF5);
bBuf &= (~0x0F);
bBuf |= 0x52;
Set_F81966_Reg(0xF5, bBuf); //count mode is second
Set_F81966_Reg(0xF6, interval);
//set timer
bBuf = Get_F81966_Reg(0xFA);
bBuf |= 0x01;
Set_F81966_Reg(0xFA, bBuf); //enable WDTO output
bBuf = Get_F81966_Reg(0xF5);
bBuf |= 0x20;
Set_F81966_Reg(0xF5, bBuf); //start counting
}
//---------------------------------------------------------------------------
void DisableWDT(void)
{
unsigned char bBuf;
Set_F81966_LD(0x07);
//switch to logic device 7
bBuf = Get_F81966_Reg(0xFA);
bBuf &= ~0x01;
Set_F81966_Reg(0xFA, bBuf); //disable WDTO output
bBuf = Get_F81966_Reg(0xF5);
bBuf &= ~0x20;
bBuf |= 0x40;
Set_F81966_Reg(0xF5, bBuf); //disable WDT
}
//---------------------------------------------------------------------------
Summary of Contents for SI-624-AI
Page 1: ...1 SI 624 AI Extreme Performance Digital Signage Player User s Manual Version 1 0 December 2023...
Page 12: ...12 SI 624 AI User Manual 1 5 Product View Front View Rear View...
Page 13: ...General Information SI 624 AI User Manual 13 1 Oblique View...
Page 14: ...14 SI 624 AI User Manual 1 6 Dimensions Unit mm...
Page 51: ...BIOS Setup SI 624 AI User Manual 51 4 4 4 5 F8996x Super IO Configuration...
Page 57: ...BIOS Setup SI 624 AI User Manual 57 4 4 4 12 Network Stack Configuration...