summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 22d7090f96..aa3f4f8d40 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -57,6 +57,7 @@
57#define PP5020 5020 57#define PP5020 5020
58#define PP5022 5022 58#define PP5022 5022
59#define PP5024 5024 59#define PP5024 5024
60#define PP6100 6100
60#define PNX0101 101 61#define PNX0101 101
61#define S3C2440 2440 62#define S3C2440 2440
62#define DSC25 25 63#define DSC25 25
@@ -188,7 +189,8 @@
188#define LCD_FUZE 32 /* as used by the Sansa Fuze */ 189#define LCD_FUZE 32 /* as used by the Sansa Fuze */
189#define LCD_LYRE_PROTO1 33 /* as used by the Lyre */ 190#define LCD_LYRE_PROTO1 33 /* as used by the Lyre */
190#define LCD_YH925 34 /* as used by Samsung YH-925 (similar to the H10 20GB) */ 191#define LCD_YH925 34 /* as used by Samsung YH-925 (similar to the H10 20GB) */
191 192#define LCD_VIEW 35 /* as used by the Sansa View */
193
192/* LCD_PIXELFORMAT */ 194/* LCD_PIXELFORMAT */
193#define HORIZONTAL_PACKING 1 195#define HORIZONTAL_PACKING 1
194#define VERTICAL_PACKING 2 196#define VERTICAL_PACKING 2
@@ -368,6 +370,8 @@ Lyre prototype 1*/
368#include "config-fuze.h" 370#include "config-fuze.h"
369#elif defined(SANSA_C200V2) 371#elif defined(SANSA_C200V2)
370#include "config-c200v2.h" 372#include "config-c200v2.h"
373#elif defined(SANSA_VIEW)
374#include "config-view.h"
371#elif defined(LYRE_PROTO1) 375#elif defined(LYRE_PROTO1)
372#include "config-lyre_proto1.h" 376#include "config-lyre_proto1.h"
373#elif defined(SAMSUNG_YH820) 377#elif defined(SAMSUNG_YH820)
@@ -576,7 +580,8 @@ Lyre prototype 1*/
576/* define for all cpus from PP family */ 580/* define for all cpus from PP family */
577#if (CONFIG_CPU == PP5002) 581#if (CONFIG_CPU == PP5002)
578#define CPU_PP 582#define CPU_PP
579#elif (CONFIG_CPU == PP5020) || (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024) 583#elif (CONFIG_CPU == PP5020) || (CONFIG_CPU == PP5022) \
584 || (CONFIG_CPU == PP5024) || (CONFIG_CPU == PP6100)
580#define CPU_PP 585#define CPU_PP
581#define CPU_PP502x 586#define CPU_PP502x
582#endif 587#endif
@@ -682,7 +687,7 @@ Lyre prototype 1*/
682 687
683/* Change this if you want to build a single-core firmware for a multicore 688/* Change this if you want to build a single-core firmware for a multicore
684 * target for debugging */ 689 * target for debugging */
685#if defined(BOOTLOADER) 690#if defined(BOOTLOADER) || (CONFIG_CPU == PP6100)
686#define FORCE_SINGLE_CORE 691#define FORCE_SINGLE_CORE
687#endif 692#endif
688 693