2

player.h

Committer:
Marknaja
Date:
2018-12-16
Revision:
7:fc66dbd1ce99
Parent:
4:5b1bd3cca8dc

File content as of revision 7:fc66dbd1ce99:

#ifndef PLAYER_H
#define PLAYER_H
#include "vs10xx.h"

/** Playing states definations. */
volatile typedef enum {
  PS_STOP,	       // Player stop						 
  PS_PLAY,         // Start to player                                                                    
} playerStatetype;


class Player
{
public:
  void begin(void);
  void playFile(char *file);
  void selectfile(char n);
  void stop(void);
  void run(void);
  void read(void);
private:
    
};

#endif