代码搜索结果
找到约 10,000 项符合
EEPROM 的代码
eeprom.c
/*--------------------------------------------------------------------------
eeprom.c
Version:
10/2004 Ver 0.2 - Corrected Eeprom_Sector_Swap to properly handle smaller
sized
eeprom.h!
VERSION:1 SOURCE_TIMESTAMP:39178F2C
NODE:M LEVEL:0 LINE:2 "_EEPROM_H"
NODE:M LEVEL:0 LINE:3 "EERE"
NODE:M LEVEL:0 LINE:4 "EEWE"
NODE:M LEVEL:0 LINE:5 "EEMWE"
NODE:M LEVEL:0 LINE:6 "EERIE"
eeprom.h
#ifndef _EEPROM_H
#define _EEPROM_H
#define EERE 0
#define EEWE 1
#define EEMWE 2
#define EERIE 3
void EEPROM_Write(unsigned int uiAddress, unsigned char ucData)
{
while
eeprom.dof
[FileVersion]
Version=6.0
[Compiler]
A=8
B=0
C=1
D=1
E=0
F=0
G=1
H=1
I=1
J=0
K=0
L=1
M=0
N=1
O=1
P=1
Q=0
R=0
S=0
T=0
U=0
V=1
W=0
X=1
Y=1
Z=1
ShowHints=1
ShowWarnings=1
U
eeprom.cfg
-$A8
-$B-
-$C+
-$D+
-$E-
-$F-
-$G+
-$H+
-$I+
-$J-
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T-
-$U-
-$V+
-$W-
-$X+
-$YD
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;Dbi
eeprom.dpr
program EEPROM;
uses
Forms,
EEPROM_form in 'EEPROM_form.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.