Lex Computech CI770C User Manual page 107

Intel mobile ivy bridge processor + (pch)qm77 / ddr3 1333 / 1600 mt/s / lan / dvi/ hdmi /audio /usb / pcie mini card
Hide thumbs Also See for CI770C:
Table of Contents

Advertisement

p.s.
f75111 send "F75111_SetWDTEnable(BYTE byteTimer)" including a parameter "timer",
if there's no disable signal (F75111_SetWDTDisable()) to stop it before timer countdown to 0, System will reboot.
if there's disable signal received, resent Enable WDT signal, for a loop to prevent from reboot p.s.
Introduction
IO function In fi le SMBus.c
void SMBusIoWrite(BYTE byteOffset,BYTE byteData)
{
outb( byteData , m_SMBusMapIoAddr + byteOffset);
}
BYTE SMBusIoRead(BYTE byteOffset)
{
DWORD dwAddrVal;
dwAddrVal = inb(m_SMBusMapIoAddr + byteOffset);
return (BYTE)(dwAddrVal & 0x0FF);
}
Initial internal F75111
void F75111::InitInternalF75111()
{
this->Write_Byte(F75111_INTERNAL_ADDR,GPIO1X_CONTROL_MODE ,0x00);
this->Write_Byte(F75111_INTERNAL_ADDR,GPIO3X_CONTROL_MODE ,0x00);
this->Write_Byte(F75111_INTERNAL_ADDR,GPIO2X_CONTROL_MODE ,0xFF);
this->Write_Byte(F75111_INTERNAL_ADDR,F75111_CONFIGURATION, 0x03);
}
Set output value
void F75111::InterDigitalOutput(BYTE byteValue)
{
BYTE byteData = 0;
byteData = (byteData & 0x01 )? byteValue + 0x01 : byteValue;
byteData = (byteData & 0x02 )? byteValue + 0x02 : byteValue;
byteData = (byteData & 0x04 )? byteValue + 0x04 : byteValue;
byteData = (byteData & 0x80 )? byteValue + 0x08 : byteValue;
//set GPIO1X to Input function
//set GPIO3X to Input function
//set GPIO2X to Output function
//Enable WDT OUT function
101

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the CI770C and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Ci770a

Table of Contents