Appendix
MBB-1000AF User’s Manual
79
bTime = strtol (argv[1], endptr, 10);
printf("System will reset after %d seconds\n", bTime);
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 iBase MBB-1000
Page 1: ......
Page 10: ...viii MBB 1000AF User s Manual This page is intentionally left blank ...
Page 17: ...General Information MBB 1000AF User s Manual 7 1 1 6 Block Diagram ...
Page 18: ...8 MBB 1000AF User s Manual 1 7 Product View Top View MBB 1000AF ...
Page 20: ...10 MBB 1000AF User s Manual 1 8 Dimensions ...
Page 24: ...14 MBB 1000AF User s Manual 2 3 Jumper Connector Locations MBB 1000AF ...
Page 79: ...BIOS Setup MBB 1000AF User s Manual 69 4 ...
Page 82: ...72 MBB 1000AF User s Manual This page is intentionally left blank ...