![IBASE Technology IB898 User Manual Download Page 50](http://html1.mh-extra.com/html/ibase-technology/ib898/ib898_user-manual_3249346050.webp)
APPENDIX
46
IB898 User’s Manual
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 "NCT5523D.H"
//---------------------------------------------------------------------------
int main (void);
void Dio5Initial(void);
void Dio5SetOutput(unsigned char);
unsigned char Dio5GetInput(void);
void Dio5SetDirection(unsigned char);
unsigned char Dio5GetDirection(void);
//---------------------------------------------------------------------------
int main (void)
{
char SIO;
SIO = Init_NCT5523D();
if (SIO == 0)
{
printf("Can not detect Nuvoton NCT5523D, program abort.\n");
return(1);
}
Dio5Initial();
//for GPIO20..27
Dio5SetDirection(0x0F); //GP20..23 = input, GP24..27=output
printf("Current DIO direction = 0x%X\n", Dio5GetDirection());
printf("Current DIO status = 0x%X\n", Dio5GetInput());
printf("Set DIO output to high\n");
Dio5SetOutput(0x0F);
printf("Set DIO output to low\n");
Dio5SetOutput(0x00);
return 0;
}
//---------------------------------------------------------------------------
Summary of Contents for IB898
Page 1: ...IB898 Intel AtomTM E3800 SoC Series 3 5 Disk Size SBC USER S MANUAL Version 1 0...
Page 4: ...iv IB898 User s Manual This page is intentionally left blank...
Page 8: ...INTRODUCTION 4 IB898 User s Manual Board Dimensions...
Page 12: ...INSTALLATIONS 8 IB898 User s Manual Jumper Locations on IB898...
Page 16: ...INSTALLATIONS 12 IB898 User s Manual Connector Locations on IB898...