summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2006-11-14 02:46:59 +0000
committerMichael Sevakis <jethead71@rockbox.org>2006-11-14 02:46:59 +0000
commit7bc41203afbf8a69dec331d304a226cb70484855 (patch)
tree7ff3ec861b9288f2118c940fe8d5a3c976e6f62a /firmware/export
parentcc50c149e9452e7c8ea199fd72f7458ead96bad7 (diff)
downloadrockbox-7bc41203afbf8a69dec331d304a226cb70484855.zip
rockbox-7bc41203afbf8a69dec331d304a226cb70484855.tar.gz
rockbox-7bc41203afbf8a69dec331d304a226cb70484855.tar.bz2
rockbox-7bc41203afbf8a69dec331d304a226cb70484855.tar.xz
Removed anachronisms introduced with low battery shutdown patch.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11524 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/lcd-remote.h1
-rw-r--r--firmware/export/pcm_record.h8
2 files changed, 7 insertions, 2 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h
index 9665652..9d5808b 100644
--- a/firmware/export/lcd-remote.h
+++ b/firmware/export/lcd-remote.h
@@ -33,6 +33,7 @@
#define REMOTETYPE_H300_LCD 2
#define REMOTETYPE_H300_NONLCD 3
extern int remote_type(void);
+extern bool remote_detect(void);
#endif
#define STYLE_DEFAULT 0
diff --git a/firmware/export/pcm_record.h b/firmware/export/pcm_record.h
index c1187a4..639ad7c 100644
--- a/firmware/export/pcm_record.h
+++ b/firmware/export/pcm_record.h
@@ -48,8 +48,12 @@ void pcm_stop_recording(void);
void pcm_calculate_rec_peaks(int *left, int *right);
/** General functions for high level codec recording **/
-void pcm_rec_error_clear(void);
-unsigned long pcm_rec_status(void);
+/* pcm_rec_error_clear is deprecated for general use. audio_error_clear
+ should be used */
+/* void pcm_rec_error_clear(void); */
+/* pcm_rec_status is deprecated for general use. audio_status merges the
+ results for consistency with the hardware codec version */
+/* unsigned long pcm_rec_status(void); */
void pcm_rec_init(void);
void pcm_rec_mux(int source);
int pcm_rec_current_bitrate(void);