D. digital i/o sample code, Appendix 40, Mb839 series user’s manual – IBASE MB839 User Manual

Page 46

Advertising
background image

APPENDIX

40

MB839 Series User’s Manual

D. Digital I/O Sample Code

File of the NCT5523D.H

//---------------------------------------------------------------------------
// 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.
//---------------------------------------------------------------------------
#ifndef __NCT5523D_H
#define __NCT5523D_H

1

//---------------------------------------------------------------------------
#define

NCT5523D_INDEX_PORT

(NCT5523D_BASE)

#define

NCT5523D_DATA_PORT

(NCT5523D_BASE+1)

//---------------------------------------------------------------------------
#define

NCT5523D_REG_LD

0x07

//---------------------------------------------------------------------------
#define NCT5523D_UNLOCK

0x87

#define

NCT5523D_LOCK

0xAA

//---------------------------------------------------------------------------
unsigned int Init_NCT5523D(void);
void Set_NCT5523D_LD( unsigned char);
void Set_NCT5523D_Reg( unsigned char, unsigned char);
unsigned char Get_NCT5523D_Reg( unsigned char);
//---------------------------------------------------------------------------
#endif //__NCT5523D_H

Advertising