Under construction

Dependencies:   4DGL-uLCD-SE SDFileSystem mbed

Fork of vs1011e by Erick Cardenas

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers player.h Source File

player.h

00001 /*
00002 
00003   VLSI Solution generic microcontroller example player / recorder definitions.
00004   v1.00.
00005 
00006   See VS10xx AppNote: Playback and Recording for details.
00007 
00008   v1.00 2012-11-23 HH  First release
00009 
00010 */
00011 #ifndef PLAYER_RECORDER_H
00012 #define PLAYER_RECORDER_H
00013 
00014 #include "vs10xx_uc.h"
00015 
00016 int VSTestInitHardware(void);
00017 int VSTestInitSoftware(void);
00018 int VSTestHandleFile(const char *fileName, int record);
00019 
00020 void WriteSci(u_int8 addr, u_int16 data);
00021 u_int16 ReadSci(u_int8 addr);
00022 int WriteSdi(const u_int8 *data, u_int8 bytes);
00023 void SaveUIState(void);
00024 void RestoreUIState(void);
00025 int GetUICommand(void);
00026 
00027 #endif
00028