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

📄 rtl8019as_m128.h

📁 网卡驱动程序
💻 H
字号:
#ifndef __RTL8019AS_M128_H
#define __RTL8019AS_M128_H

// RTL8019 地址端口
#define RTL8019_ADDR_PORT     PORTB
#define RTL8019_ADDR_DDR      DDRB
#define RTL8019_ADDR_PINS     0x1F

// RTL8019 数据端口
#define RTL8019_DATA_PORT     PORTA
#define RTL8019_DATA_DDR      DDRA

// RTL8019 中断端口
#define RTL8019_INT_PORT      PORTD
#define RTL8019_INT_DDR       DDRD
#define INT0_PIN    0 

// RTL8019 控制端口
#define RTL8019_CTRL_PORT      PORTD
#define RTL8019_CTRL_DDR       DDRD
#define RSTDRV_PIN            4 
#define IORB_PIN              6 
#define IOW0_PIN              7 


void Rtl8019_WriteData(unsigned char cAddr, unsigned char cData);
unsigned char Rtl8019_ReadData(unsigned char cAddr);
void Rtl8019_SetPage(unsigned char cPage);

void Rtl8019_Init(void);


#endif

⌨️ 快捷键说明

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