⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 picme165x.h

📁 picc
💻 H
字号:
/*
 *	Header file for the Microchip 
 *	PIC 16C57 chip
 *	Baseline Microcontrollers
 */

volatile unsigned char	TMR0	@ 0x01;
volatile unsigned char	RTCC	@ 0x01;
volatile unsigned char	PCL	@ 0x02;
volatile unsigned char	STATUS	@ 0x03;
		unsigned char	FSR	@ 0x04;
volatile unsigned char	PORTA	@ 0x05;
volatile unsigned char	PORTB	@ 0x06;

		unsigned char control	OPTION	@ 0x00;
volatile	unsigned char control	TRISA	@ 0x05;
volatile	unsigned char control	TRISB	@ 0x06;

/*	STATUS bits	*/
volatile bit	PA1	@ (unsigned)&STATUS*8+6;
volatile bit	PA0	@ (unsigned)&STATUS*8+5;
volatile bit	TO	@ (unsigned)&STATUS*8+4;
volatile bit	PD	@ (unsigned)&STATUS*8+3;
volatile bit	ZERO	@ (unsigned)&STATUS*8+2;
volatile bit	DC	@ (unsigned)&STATUS*8+1;
volatile bit	CARRY	@ (unsigned)&STATUS*8+0;

/*	OPTION bits	*/
#define	T0CS	(1<<5)
#define	T0SE	(1<<4)
#define	PSA	(1<<3)
#define	PS2	(1<<2)
#define	PS1	(1<<1)
#define	PS0	(1<<0)

/*	PORTA	bits	*/
volatile bit	RA3	@ (unsigned)&PORTA*8+3;
volatile bit	RA2	@ (unsigned)&PORTA*8+2;
volatile bit	RA1	@ (unsigned)&PORTA*8+1;
volatile bit	RA0	@ (unsigned)&PORTA*8+0;

/*	PORTB bits	*/
volatile bit	RB7	@ (unsigned)&PORTB*8+7;
volatile bit	RB6	@ (unsigned)&PORTB*8+6;
volatile bit	RB5	@ (unsigned)&PORTB*8+5;
volatile bit	RB4	@ (unsigned)&PORTB*8+4;
volatile bit	RB3	@ (unsigned)&PORTB*8+3;
volatile bit	RB2	@ (unsigned)&PORTB*8+2;
volatile bit	RB1	@ (unsigned)&PORTB*8+1;
volatile bit	RB0	@ (unsigned)&PORTB*8+0;

volatile unsigned char		PORTC	@ 0x07;
volatile	unsigned char control	TRISC	@ 0x07;

/*	PORTC bits	*/
volatile bit 	RC7	@ (unsigned)&PORTC*8+7;
volatile bit 	RC6	@ (unsigned)&PORTC*8+6;
volatile bit 	RC5	@ (unsigned)&PORTC*8+5;
volatile bit 	RC4	@ (unsigned)&PORTC*8+4;
volatile bit 	RC3	@ (unsigned)&PORTC*8+3;
volatile bit 	RC2	@ (unsigned)&PORTC*8+2;
volatile bit 	RC1	@ (unsigned)&PORTC*8+1;
volatile bit 	RC0	@ (unsigned)&PORTC*8+0;

#define	CONFIG_ADDR	0xFFF

/*watchdog*/
#define WDTEN		0xFFFF
#define WDTDIS		0xFFFB

/*osc configurations*/
#define RC		0xFFFF
#define HS		0xFFFE
#define XT		0xFFFD
#define LP		0xFFFC

/*code protection*/
#define PROTECT		0xFFF7
#define UNPROTECT	0xFFFF

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -