INSTALLATIONS
22
MB966 User’s Manual
Digital I/O Sample Configuration
Filename
:
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 "W627DHG.H"
//---------------------------------------------------------------------------
int main (void);
void Dio2Initial(void);
void Dio2SetOutput(unsigned char);
unsigned char Dio2GetInput(void);
void Dio2SetDirection(unsigned char);
unsigned char Dio2GetDirection(void);
void Dio3Initial(void);
void Dio3SetOutput(unsigned char);
unsigned char Dio3GetInput(void);
void Dio3SetDirection(unsigned char);
unsigned char Dio3GetDirection(void);
//---------------------------------------------------------------------------
int main (void)
{
char SIO;
SIO = Init_W627DHG();
if (SIO == 0)
{
printf("Can not detect Winbond 83627DHG, program abort.\n");
return(1);
}
Dio2Initial();
Dio3Initial();
//for GPIO30..37
Dio3SetDirection(0x0F);
//GP30..33 = input, GP34..37=output
printf("Current DIO direction = 0x%X\n", Dio3GetDirection());
printf("Current DIO status = 0x%X\n", Dio3GetInput());
printf("Set DIO output to high\n");
Dio3SetOutput(0x0F);
printf("Set DIO output to low\n");
Dio3SetOutput(0x00);
return 0;
}
//---------------------------------------------------------------------------
void Dio2Initial(void)
{
unsigned char ucBuf;
//switch GPIO multi-function pin
ucBuf = Get_W627DHG_Reg(0x24);
ucBuf &= 0xFE;
Set_W627DHG_Reg(0x24, ucBuf);
Set_W627DHG_LD(0x09);
//switch to logic device 9
//enable the GP2 group
Summary of Contents for MB966
Page 1: ...MB966 Intel Xeon Core i3 i5 i7 Motherboard USER S MANUAL Version 1 3 ...
Page 5: ...MB966 User s Manual v This page is intentionally left blank ...
Page 6: ......
Page 11: ...INTRODUCTION MB966 User s Manual 5 Board Dimensions ...
Page 12: ...INTRODUCTION 6 MB966 User s Manual This page is intentionally left blank ...
Page 21: ...INSTALLATIONS MB966 User s Manual 15 Connector Locations on MB966 ...
Page 58: ...BIOS SETUP 52 MB966 User s Manual This page is intentionally left blank aa ...