mirror of
https://github.com/drasko/open-ameba.git
synced 2024-11-22 05:54:17 +00:00
12 lines
257 B
C
12 lines
257 B
C
#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
|