summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rwxr-xr-xfirmware/export/config-hdd1630.h10
-rw-r--r--firmware/export/synaptics-mep.h11
2 files changed, 13 insertions, 8 deletions
diff --git a/firmware/export/config-hdd1630.h b/firmware/export/config-hdd1630.h
index 7ccad010fe..69ef99955d 100755
--- a/firmware/export/config-hdd1630.h
+++ b/firmware/export/config-hdd1630.h
@@ -108,15 +108,17 @@
108 108
109/* Define this for LCD backlight available */ 109/* Define this for LCD backlight available */
110#define HAVE_BACKLIGHT 110#define HAVE_BACKLIGHT
111/* #define HAVE_BACKLIGHT_BRIGHTNESS */ 111#define HAVE_BACKLIGHT_BRIGHTNESS
112/* #define CONFIG_BACKLIGHT_FADING BACKLIGHT_FADING_SW_SETTING */
112 113
113/* Main LCD backlight brightness range and defaults */ 114/* Main LCD backlight brightness range and defaults */
114#define MIN_BRIGHTNESS_SETTING 1 115#define MIN_BRIGHTNESS_SETTING 1
115#define MAX_BRIGHTNESS_SETTING 12 116#define MAX_BRIGHTNESS_SETTING 16
116#define DEFAULT_BRIGHTNESS_SETTING 6 117#define DEFAULT_BRIGHTNESS_SETTING 13 /* match OF brightness */
117 118
118/* define this if you have a light associated with the buttons */ 119/* define this if you have a light associated with the buttons */
119/* #define HAVE_BUTTON_LIGHT */ 120#define HAVE_BUTTON_LIGHT
121#define HAVE_BUTTONLIGHT_BRIGHTNESS
120 122
121#define BATTERY_CAPACITY_DEFAULT 630 /* default battery capacity */ 123#define BATTERY_CAPACITY_DEFAULT 630 /* default battery capacity */
122#define BATTERY_CAPACITY_MIN 630 /* min. capacity selectable */ 124#define BATTERY_CAPACITY_MIN 630 /* min. capacity selectable */
diff --git a/firmware/export/synaptics-mep.h b/firmware/export/synaptics-mep.h
index 8f717da884..866add6c29 100644
--- a/firmware/export/synaptics-mep.h
+++ b/firmware/export/synaptics-mep.h
@@ -18,10 +18,13 @@
18 * KIND, either express or implied. 18 * KIND, either express or implied.
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21#ifndef SYNAPTICS_MEP_H
22#define SYNAPTICS_MEP_H
21 23
22int syn_init(void); 24int syn_init(void);
23int syn_read_device(int *data, int len); 25int syn_get_status(void);
26void syn_int_enable(bool enable);
27int syn_read(int *data, int len);
28int syn_send(int *data, int len);
24 29
25#ifdef ROCKBOX_HAS_LOGF
26void syn_info(void);
27#endif 30#endif