summaryrefslogtreecommitdiff
path: root/firmware/export/button.h
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2019-01-03 20:46:54 -0500
committerSolomon Peachy <pizza@shaftnet.org>2019-01-04 23:52:42 +0100
commitd24edc605b9b52d3610efbb9cf691c437ea00746 (patch)
treebd8e6119e4611c6ff83bd316816e0b9534d84deb /firmware/export/button.h
parent100f4338deea5239423a0b8974784939d520385c (diff)
downloadrockbox-d24edc605b9b52d3610efbb9cf691c437ea00746.tar.gz
rockbox-d24edc605b9b52d3610efbb9cf691c437ea00746.zip
Add HAVE_LINEOUT_DETECTION and associated logic
This allows targets to automatically switch audio settings when the line out is plugged/unplugged. Only hooked up on the xDuoo X3, but there are other potential users. Change-Id: Ic46a329bc955cca2e2ad0335ca16295eab24ad59
Diffstat (limited to 'firmware/export/button.h')
-rw-r--r--firmware/export/button.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/export/button.h b/firmware/export/button.h
index 7109c00f97..d9732ebe8b 100644
--- a/firmware/export/button.h
+++ b/firmware/export/button.h
@@ -44,7 +44,7 @@ int button_read_device(void);
44#ifdef HAS_BUTTON_HOLD 44#ifdef HAS_BUTTON_HOLD
45bool button_hold(void); 45bool button_hold(void);
46#endif 46#endif
47#ifdef HAS_REMOTE_BUTTON_HOLD 47#ifdef HAS_REMOTE_BUTTON_HOLD
48bool remote_button_hold(void); 48bool remote_button_hold(void);
49#endif 49#endif
50 50
@@ -72,6 +72,9 @@ void set_remote_backlight_filter_keypress(bool value);
72#ifdef HAVE_HEADPHONE_DETECTION 72#ifdef HAVE_HEADPHONE_DETECTION
73bool headphones_inserted(void); 73bool headphones_inserted(void);
74#endif 74#endif
75#ifdef HAVE_LINEOUT_DETECTION
76bool lineout_inserted(void);
77#endif
75#ifdef HAVE_WHEEL_POSITION 78#ifdef HAVE_WHEEL_POSITION
76int wheel_status(void); 79int wheel_status(void);
77void wheel_send_events(bool send); 80void wheel_send_events(bool send);