Started implementing EEPROM writer/reader for AT28C256.

This commit is contained in:
2022-07-29 14:53:43 +02:00
parent ac69187b5f
commit 7a476f3180
8 changed files with 77 additions and 36 deletions

8
at28c256/at28c256.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef AT28C256_H_
#define AT28C256_H_
void at28c256_init(unsigned char, unsigned char);
void at28c256_write(unsigned short, unsigned char);
//unsigned char at28c256_read(unsigned short); TODO
#endif