summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/CATEGORIES1
-rw-r--r--apps/plugins/SOURCES9
-rw-r--r--apps/plugins/test_scanrate.c25
3 files changed, 10 insertions, 25 deletions
diff --git a/apps/plugins/CATEGORIES b/apps/plugins/CATEGORIES
index c2ad75e0c7..4b267c162b 100644
--- a/apps/plugins/CATEGORIES
+++ b/apps/plugins/CATEGORIES
@@ -80,7 +80,6 @@ stopwatch,apps
80test_codec,viewers 80test_codec,viewers
81test_disk,apps 81test_disk,apps
82test_fps,apps 82test_fps,apps
83test_grey,apps
84test_sampr,apps 83test_sampr,apps
85test_scanrate,apps 84test_scanrate,apps
86test_viewports,apps 85test_viewports,apps
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index fbfb38047d..b6603a44c0 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -19,7 +19,6 @@ stats.c
19stopwatch.c 19stopwatch.c
20vbrfix.c 20vbrfix.c
21viewer.c 21viewer.c
22test_disk.c
23 22
24#ifdef OLYMPUS_MROBE_500 23#ifdef OLYMPUS_MROBE_500
25/* remove these once the plugins before it are compileable */ 24/* remove these once the plugins before it are compileable */
@@ -48,9 +47,6 @@ flipit.c
48brickmania.c 47brickmania.c
49maze.c 48maze.c
50mazezam.c 49mazezam.c
51greyscale.c
52test_fps.c
53test_scanrate.c
54text_editor.c 50text_editor.c
55wavview.c 51wavview.c
56robotfindskitten.c 52robotfindskitten.c
@@ -61,10 +57,6 @@ jpeg.c
61mandelbrot.c 57mandelbrot.c
62plasma.c 58plasma.c
63 59
64#if LCD_DEPTH < 4
65test_grey.c
66#endif
67
68blackjack.c 60blackjack.c
69bounce.c 61bounce.c
70bubbles.c 62bubbles.c
@@ -124,7 +116,6 @@ nim.c
124 116
125#if CONFIG_CODEC == SWCODEC /* software codec platforms */ 117#if CONFIG_CODEC == SWCODEC /* software codec platforms */
126mp3_encoder.c 118mp3_encoder.c
127test_codec.c
128wav2wv.c 119wav2wv.c
129#else /* hardware codec platforms */ 120#else /* hardware codec platforms */
130#ifndef HAVE_MMC /* not for Ondio, has no remote control pin */ 121#ifndef HAVE_MMC /* not for Ondio, has no remote control pin */
diff --git a/apps/plugins/test_scanrate.c b/apps/plugins/test_scanrate.c
index aabc623d9f..63ab97d89d 100644
--- a/apps/plugins/test_scanrate.c
+++ b/apps/plugins/test_scanrate.c
@@ -56,29 +56,24 @@ PLUGIN_HEADER
56#endif 56#endif
57 57
58/* Default refresh rates in 1/10 Hz */ 58/* Default refresh rates in 1/10 Hz */
59#if defined ARCHOS_RECORDER || defined ARCHOS_FMRECORDER \ 59#if CONFIG_LCD == LCD_SSD1815
60 || defined ARCHOS_RECORDERV2 || defined ARCHOS_ONDIOFM \
61 || defined ARCHOS_ONDIOSP
62#define DEFAULT_SCAN_RATE 670 60#define DEFAULT_SCAN_RATE 670
63#elif defined IAUDIO_M3 61#elif CONFIG_LCD == LCD_S1D15E06
64#define DEFAULT_SCAN_RATE 1500 62#define DEFAULT_SCAN_RATE 700
63#elif CONFIG_LCD == LCD_IPOD2BPP
64#define DEFAULT_SCAN_RATE 800
65#elif CONFIG_LCD == LCD_IPODMINI
66#define DEFAULT_SCAN_RATE 880
67#elif CONFIG_LCD == LCD_TL0350A
68#define DEFAULT_SCAN_RATE 1480
65#define HORIZ_SCAN /* LCD controller updates the panel sideways */ 69#define HORIZ_SCAN /* LCD controller updates the panel sideways */
66#define NEED_BOOST 70#define NEED_BOOST
67#elif defined IAUDIO_M5
68#define DEFAULT_SCAN_RATE 730
69#elif defined IPOD_1G2G
70#define DEFAULT_SCAN_RATE 960
71#elif defined IPOD_MINI2G || defined IPOD_MINI \
72 || defined IPOD_3G || defined IPOD_4G
73#define DEFAULT_SCAN_RATE 870
74#elif defined IRIVER_H100_SERIES
75#define DEFAULT_SCAN_RATE 700
76#else 71#else
77#define DEFAULT_SCAN_RATE 700 72#define DEFAULT_SCAN_RATE 700
78#warning Generic default scanrate 73#warning Generic default scanrate
79#endif 74#endif
80 75
81#ifdef HORIZ_SCAN 76#ifdef HORIZ_SCAN
82#define TEXT_X 0 77#define TEXT_X 0
83#if LCD_PIXELFORMAT == HORIZONTAL_PACKING 78#if LCD_PIXELFORMAT == HORIZONTAL_PACKING
84#define BUF_WIDTH ((LCD_WIDTH+7)/8) 79#define BUF_WIDTH ((LCD_WIDTH+7)/8)