Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
248 Kevin 1
/*
2
 
3
  VLSI Solution generic microcontroller example player / recorder definitions.
4
  v1.00.
5
 
6
  See VS10xx AppNote: Playback and Recording for details.
7
 
8
  v1.00 2012-11-23 HH  First release
9
 
10
*/
11
#ifndef PLAYER_RECORDER_H
12
#define PLAYER_RECORDER_H
13
 
14
#include "vs10xx_uc.h"
15
 
16
int VS1053Init(void);
17
int VSInitHardware(void);
18
int VSInitSoftware(void);
19
void VS1053PlayFile(const char *fileName);
20
 
21
#endif