mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
* Only bootloader builds * Plugins disabled * No keymaps to anything else * No simulator * Touchscreen not wired up yet * Audio still untested Bugs: * rotary encoder does nothing in bootloader (might be bootloader bug, might be something else) Other stuff pulled in: * Unify all of the (identical!) hibyos makefiles * Rename the "bootloader" to more generic name Change-Id: I6d8a3b58de726db8e89cf193c90960a070a575c2
17 lines
487 B
C
17 lines
487 B
C
#ifndef __SURFANSLINUX_CODEC__
|
|
#define __SURFANSLINUX_CODEC__
|
|
|
|
#define AUDIOHW_CAPS (FILTER_ROLL_OFF_CAP)
|
|
AUDIOHW_SETTING(VOLUME, "dB", 1, 5, -102*10, 0, -30*10)
|
|
#endif
|
|
|
|
// We want this, but the codec takes over a second to unmute!
|
|
//#define AUDIOHW_MUTE_ON_STOP
|
|
|
|
//#define AUDIOHW_NEEDS_INITIAL_UNMUTE
|
|
AUDIOHW_SETTING(FILTER_ROLL_OFF, "", 0, 1, 0, 4, 0)
|
|
#define AUDIOHW_HAVE_SHORT2_ROLL_OFF
|
|
|
|
void audiohw_mute(int mute);
|
|
void surfans_set_output(int ps);
|
|
int surfans_get_outputs(void);
|