open-ameba/project/inc/user/spiram_fifo.h

13 lines
257 B
C
Raw Normal View History

2016-11-09 00:56:41 +00:00
#ifndef _SPIRAM_FIFO_H_
#define _SPIRAM_FIFO_H_
int RamFifoInit(int size);
void RamFifoRead(char *buff, int len);
void RamFifoWrite(char *buff, int len);
int RamFifoFill();
int RamFifoFree();
long RamGetOverrunCt();
long RamGetUnderrunCt();
#endif