audio_config.h 372 B

12345678910111213141516
  1. #ifndef _APP_AUDIO_H_
  2. #define _APP_AUDIO_H_
  3. #include "generic/typedef.h"
  4. #include "board_config.h"
  5. extern u8 get_max_sys_vol(void);
  6. s8 app_audio_get_volume(u8 state);
  7. #define APP_AUDIO_STATE_MUSIC 1
  8. #define SYS_MAX_VOL 16
  9. #define SYS_DEFAULT_VOL 16
  10. #define SYS_DEFAULT_TONE_VOL 16
  11. #define SYS_DEFAULT_SIN_VOL 8
  12. #endif/*_APP_AUDIO_H_*/