INSTALLATIONS
MB860 User’s Manual
27
File of the Main.cpp
//=====================================================================
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
// PURPOSE.
//
//=====================================================================
#include <dos.h>
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include "W627HF.H"
//=====================================================================
void ClrKbBuf(void);
int main (int argc, char *argv[]);
//=====================================================================
int main (int argc, char *argv[])
{
unsigned char ucDO = 0;
//data for digital output
unsigned char ucDI;
//data for digital input
unsigned char ucBuf;
Set_W627HF_LD( 0x07);
//switch to logic device 7
Set_W627HF_Reg(0xF1, 0x00);
//clear
ucDI = Get_W627HF_Reg(0xF1) & 0x0F;
ClrKbBuf();
while(1)
{
ucDO++;
Set_W627HF_Reg(0xF1, ((ucDO & 0x0F) << 4));
ucBuf = Get_W627HF_Reg(0xF1) & 0x0F;
if (ucBuf != ucDI)
{
ucDI = ucBuf;
printf("Digital I/O Input Changed. Current Data is 0x%X\n",ucDI);
}
if (kbhit())
{
getch();
break;
}
delay(500);
}
return 0;
}
//=====================================================================
void ClrKbBuf(void)
{
while(kbhit())
{
getch();
}
}
//---------------------------------------------------------------------------
Summary of Contents for MB860
Page 1: ...MB860 Transmeta Efficeon Mini ITX Motherboard USER S MANUAL Version 1 0 ...
Page 4: ...iv MB860 User s Manual This page is intentionally left blank ...
Page 8: ...INTRODUCTION 4 MB860 User s Manual Board Dimensions ...
Page 26: ...INSTALLATIONS 22 MB860 User s Manual ...
Page 53: ...BIOS SETUP MB860 User s Manual 49 This page is intentionally left blank ...
Page 58: ...DRIVER INSTALLATION 54 MB860 User s Manual 3 Click Next to continue 4 Click Next to continue ...
Page 63: ...DRIVERS INSTALLATION MB860 User s Manual 59 This page is intentionally left blank ...