Put hex finctionality into seperate file
[jelmer/at89prog.git] / at89ser.h
1 #ifndef __AT89SER_H__
2 #define __AT89SER_H__
3
4 int activate();
5 void deactivate();
6 void programming();
7
8 void writecode(int addr, char byte);
9 int readcode(int addr);
10
11 void writedata(int addr, char byte);
12 int readdata(int addr);
13
14 void erase();
15
16 void lock(int byte);
17
18 #endif