1
0
Fork 0
forked from len0rd/rockbox

Sansa AMS : fix recording

Flyspray: FS#10371
Authors: Fred Bauer and myself

Only enabled on e200v2 and Fuze (crashes on clipv1)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23739 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2009-11-24 17:59:25 +00:00
parent cb9dff0a95
commit 231e54d80f
4 changed files with 70 additions and 24 deletions

View file

@ -517,5 +517,14 @@ interface */
#define I2SIN_DATA (volatile unsigned long*)(I2SIN_BASE+0x14)
#define I2SIN_SPDIF_STATUS (*(volatile unsigned long*)(I2SIN_BASE+0x18))
/* I2SIN_MASK */
#define I2SIN_MASK_PUER ( 1<<6 ) /* push error */
#define I2SIN_MASK_POE ( 1<<5 ) /* empty */
#define I2SIN_MASK_POAE ( 1<<4 ) /* almost empty */
#define I2SIN_MASK_POHF ( 1<<3 ) /* half full */
#define I2SIN_MASK_POAF ( 1<<2 ) /* almost full */
#define I2SIN_MASK_POF ( 1<<1 ) /* full */
#define I2SIN_MASK_POER ( 1<<0 ) /* pop error */
#endif /*__AS3525_H__*/