10 lines
175 B
C
10 lines
175 B
C
|
#ifndef __STORAGE_H__
|
||
|
#define __STORAGE_H__
|
||
|
#include "at24cx.h"
|
||
|
extern at24cx_dev_t at24c02_device;
|
||
|
|
||
|
int storage_init(void);
|
||
|
|
||
|
void storage_test(void);
|
||
|
#endif // __STORAGE_H__
|