代码搜索结果
找到约 10,000 项符合
EEPROM 的代码
eeprom.lk
EEPROM.o
eeprom.lst
__text_start:
__start:
0030 E5CF LDI R28,0x5F
0031 E0D4 LDI R29,4
0032 BFCD OUT P3D,R28
0033 BFDE OUT P3E,R29
0034 51C0 SUBI R28,0x10
0035 40D0
eeprom.lis
.module EEPROM.c
.area text(rom, con, rel)
0000 .dbfile C:/icc/include/AVR_PQ1A.h
0000 .dbfunc e Delayus _Delay
eeprom.prj
[Compiler Options]
Edit1=C:\icc\include\
Edit2=C:\icc\lib\
Edit8=
CheckBox1=0
CheckBox2=1
Edit3=
Edit4=
Edit11=16
Edit13=
ComboBox1=0
Edit9=16384
Edit10=1024
ComboBox2=14
RadioGroup1=0
eeprom.mp
NOTE: AVR Code addresses are word addresses
All other addresses (including ones in FLASH) are byte addresses
Area Addr Size Decimal Bytes (Attributes)
----------
eeprom.c
/*******************************************
文件:EEPROM.C
环境:编译为ICC AVR6.25A,仿真为AVR Studio4.10
硬件:ATMEGA16芯片
日期:2006年12月10日
功能:实现MEGA16的EEPROM的读和写操作
备注:参考《AVR系列单片机C语言编程与应用实例》(清华大学出版
eeprom.c
#include
void eeprom_write(unsigned char addr, unsigned char value)
{
//see 'writing to eeprom memory' in PIC16F876 manual
bank1 static bit gie_temp;
EEADR=(unsigned char)(addr);
eeprom.c
/*
[from http://www.htsoft.com/ and PIC C online forum, 24 Feb 2000]
[cezarym@apator.torun.pl]
Hello,
There are some routines could you help follows. I have written it for 12CE673,
but it s
eeprom.h
#ifndef EEPROM_H
#define EEPROM_H
#include
#include
#define WRITE 0xa0 //定义24C02的器件地址SLA和方向位W
#define READ 0xa1 //定义24C