📄 mp3061.h
字号:
#ifndef __MP3061_H__
#define __MP3061_H__
// For USB Class
#define UNSP_CLASS 0x00
#define MASS_CLASS 0x01
// For MP3 or WAV
#define MP3_IDLE 0x0000
#define MP3_PAUSE 0x0001
#define MP3_PLAY 0x0002
#define WAV_IDLE 0x8000
#define WAV_PAUSE 0x8001
#define WAV_PLAY 0x8002
#define WAV_RECORD 0x8003
// write your header here
typedef struct _REPEAT_AB{
unsigned int A_Locate;
unsigned int B_Locate;
}Repeat_AB;
typedef struct _TIME{
unsigned int sec;
unsigned int min;
unsigned int hour;
} TIME;
typedef struct _DATE{
unsigned int year;
unsigned int month;
unsigned int day;
} DATE;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -