Winmate ID31 User Manual page 81

3.5” fanless sbc with intel ® atom dual core n2600 1.6ghz processor, vga, lvds, dual giga ethernet, and mini-pcie interface
Hide thumbs Also See for ID31:
Table of Contents

Advertisement

ID31 Motherboard User Manual /
Engineering Spec.
//---------------------------------------------------------------------------
void Unlock_W83627EHG (void)
{
outportb(W83627EHG_INDEX_PORT, W83627EHG_UNLOCK);
outportb(W83627EHG_INDEX_PORT, W83627EHG_UNLOCK);
}
//============================================================
void Lock_W83627EHG (void)
{
outportb(W83627EHG_INDEX_PORT, W83627EHG_LOCK);
}
//============================================================
void Set_W83627EHG_Reg( unsigned char REG, unsigned char DATA)
{
Unlock_W83627EHG();
outportb(W83627EHG_INDEX_PORT, REG);
outportb(W83627EHG_DATA_PORT, DATA);
Lock_W83627EHG();
}
//============================================================
unsigned char Get_W83627EHG_Reg( unsigned char REG)
{
unsigned char Result;
Unlock_W83627EHG();
outportb(W83627EHG_INDEX_PORT, REG);
Result = inportb(W83627EHG_DATA_PORT);
Lock_W83627EHG();
return Result;
}
//============================================================
ID31 Motherboard User Manual
73

Advertisement

Table of Contents
loading

Table of Contents