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

📄 uat_eeprom.h

📁 HDMI 开发演示板原程序,receive端,HDCP芯片内置
💻 H
字号:
#ifndef SII_AT_EEPROM
#define SII_AT_EEPROM

#include "SiITypeDefs.h"
#include "AT89C51XD2.h"

#define halDisableMCUInterrupts() EA = 0
#define halEnableMCUInterrupts() EA = 1
#define halIsIntEEPROM_Busy() (EECON & 0x01)
#define halIntEEPROM_Enable() ( EECON |= 0x02 )
#define halIntEEPROM_Disable() ( EECON &= 0xFD )

void siiWriteByteInternEEPROM ( WORD , BYTE );
void siiReadByteInternEEPROM ( WORD , BYTE * );

#endif

⌨️ 快捷键说明

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