summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
authorMark Arigo <markarigo@gmail.com>2009-05-25 21:10:45 +0000
committerMark Arigo <markarigo@gmail.com>2009-05-25 21:10:45 +0000
commit758bb3bc628705ff8e5c677b3b2d87720c726c13 (patch)
treed78cbf984e4bc613b0b76fcf4a5f090ab1d774b8 /firmware/export/config.h
parentd2ea7db6f55cbb121870ecd41d4d80581354b799 (diff)
downloadrockbox-758bb3bc628705ff8e5c677b3b2d87720c726c13.tar.gz
rockbox-758bb3bc628705ff8e5c677b3b2d87720c726c13.zip
3 new ports: Samsung YH-820, YH-920, and YH-925. Mostly functional. Audio working on 820 & 925 (untested on the 920). No battery readings. No recording. No plugins. Keymap needs work.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21083 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index ff9a8e9589..56cd2dec94 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -109,6 +109,7 @@
109#define SANSA_CLIP_PAD 35 109#define SANSA_CLIP_PAD 35
110#define SANSA_FUZE_PAD 36 110#define SANSA_FUZE_PAD 36
111#define LYRE_PROTO1_PAD 37 111#define LYRE_PROTO1_PAD 37
112#define SAMSUNG_YH_PAD 38
112 113
113/* CONFIG_REMOTE_KEYPAD */ 114/* CONFIG_REMOTE_KEYPAD */
114#define H100_REMOTE 1 115#define H100_REMOTE 1
@@ -185,7 +186,8 @@
185#define LCD_SSD1303 31 /* as used by the Sansa Clip */ 186#define LCD_SSD1303 31 /* as used by the Sansa Clip */
186#define LCD_FUZE 32 /* as used by the Sansa Fuze */ 187#define LCD_FUZE 32 /* as used by the Sansa Fuze */
187#define LCD_LYRE_PROTO1 33 /* as used by the Lyre */ 188#define LCD_LYRE_PROTO1 33 /* as used by the Lyre */
188 189#define LCD_YH925 34 /* as used by Samsung YH-925 (similar to the H10 20GB) */
190
189/* LCD_PIXELFORMAT */ 191/* LCD_PIXELFORMAT */
190#define HORIZONTAL_PACKING 1 192#define HORIZONTAL_PACKING 1
191#define VERTICAL_PACKING 2 193#define VERTICAL_PACKING 2
@@ -364,6 +366,12 @@ Lyre prototype 1*/
364#include "config-c200v2.h" 366#include "config-c200v2.h"
365#elif defined(LYRE_PROTO1) 367#elif defined(LYRE_PROTO1)
366#include "config-lyre_proto1.h" 368#include "config-lyre_proto1.h"
369#elif defined(SAMSUNG_YH820)
370#include "config-yh820.h"
371#elif defined(SAMSUNG_YH920)
372#include "config-yh920.h"
373#elif defined(SAMSUNG_YH925)
374#include "config-yh925.h"
367#else 375#else
368/* no known platform */ 376/* no known platform */
369#endif 377#endif