mp3.h

来自「用AVR的MP3代码」· C头文件 代码 · 共 25 行

H
25
字号
#ifndef QzhDefineMP3H
#define QzhDefineMP3H

#ifdef __cplusplus
extern "C" {
#endif

#define PREVSONG   BIT(2)
#define NEXTSONG   BIT(3)
#define VOLDOWN    BIT(4)
#define VOLUP      BIT(5)
#define STOP       BIT(6)

// By 老圣(13809003593),2006.10.28
#define KeyMask			(PREVSONG | NEXTSONG | VOLDOWN | VOLUP | STOP)
// 表示没有键按下
#define KeyNone			0x00
// 表示按下了前或后一首歌按键
#define KeyNextOrPrev	0x80	
 		
#ifdef __cplusplus
}
#endif

#endif // QzhDefineMP3H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?