18 lines
522 B
C
18 lines
522 B
C
#ifndef __MR_FDL_H__
|
|
#define __MR_FDL_H__
|
|
|
|
#include <pfdl.h>
|
|
#include <pfdl_types.h>
|
|
|
|
pfdl_status_t mfdl_handler( void);
|
|
pfdl_status_t mfdl_open( void);
|
|
void mfdl_close( void);
|
|
|
|
pfdl_status_t mfdl_erase( pfdl_u16 block);
|
|
pfdl_status_t mfdl_check( pfdl_u16 index, pfdl_u16 length);
|
|
pfdl_status_t mfdl_verify(pfdl_u16 index, pfdl_u16 length);
|
|
pfdl_status_t mfdl_read( pfdl_u16 index, pfdl_u16 length, __near pfdl_u08* data);
|
|
pfdl_status_t mfdl_write( pfdl_u16 index, pfdl_u16 length, __near pfdl_u08* data);
|
|
|
|
#endif
|