summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/SOURCES1
-rw-r--r--apps/plugins/test_fps.c9
-rw-r--r--firmware/export/config-e200v2.h3
-rw-r--r--firmware/export/config-fuze.h4
4 files changed, 14 insertions, 3 deletions
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index d9ed9ac24f..9317ab6657 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -1,4 +1,5 @@
1/* plugins common to all models */ 1/* plugins common to all models */
2test_fps.c
2chessclock.c 3chessclock.c
3credits.c 4credits.c
4cube.c 5cube.c
diff --git a/apps/plugins/test_fps.c b/apps/plugins/test_fps.c
index c688a54de0..f7027ffd8d 100644
--- a/apps/plugins/test_fps.c
+++ b/apps/plugins/test_fps.c
@@ -349,12 +349,19 @@ enum plugin_status plugin_start(const void* parameter)
349#endif 349#endif
350 backlight_force_on(); /* backlight control in lib/helper.c */ 350 backlight_force_on(); /* backlight control in lib/helper.c */
351 351
352 log_text("Main LCD Update"); 352 rb->cpu_boost(false);
353 log_text("Main LCD Update unboosted");
353 time_main_update(); 354 time_main_update();
355 rb->cpu_boost(true);
356 log_text("Main LCD Update boosted");
357 time_main_update();
358 rb->cpu_boost(false);
359/*
354#ifdef HAVE_LCD_COLOR 360#ifdef HAVE_LCD_COLOR
355 log_text("Main LCD YUV"); 361 log_text("Main LCD YUV");
356 time_main_yuv(); 362 time_main_yuv();
357#endif 363#endif
364*/
358#if LCD_DEPTH < 4 365#if LCD_DEPTH < 4
359 log_text("Greyscale library"); 366 log_text("Greyscale library");
360 time_greyscale(); 367 time_greyscale();
diff --git a/firmware/export/config-e200v2.h b/firmware/export/config-e200v2.h
index 7f993be512..dbd3b0c0ee 100644
--- a/firmware/export/config-e200v2.h
+++ b/firmware/export/config-e200v2.h
@@ -66,7 +66,8 @@
66/* define this if you can invert the colours on your LCD */ 66/* define this if you can invert the colours on your LCD */
67#define HAVE_LCD_INVERT 67#define HAVE_LCD_INVERT
68 68
69/* #define IRAM_LCDFRAMEBUFFER IDATA_ATTR *//* put the lcd frame buffer in IRAM */ 69/* put the lcd frame buffer in IRAM */
70#define IRAM_LCDFRAMEBUFFER IBSS_ATTR
70 71
71#define CONFIG_KEYPAD SANSA_E200_PAD 72#define CONFIG_KEYPAD SANSA_E200_PAD
72 73
diff --git a/firmware/export/config-fuze.h b/firmware/export/config-fuze.h
index a5ccf63180..51b2180217 100644
--- a/firmware/export/config-fuze.h
+++ b/firmware/export/config-fuze.h
@@ -70,7 +70,9 @@
70#define HAVE_SW_TONE_CONTROLS 70#define HAVE_SW_TONE_CONTROLS
71 71
72#endif /* !BOOTLOADER */ 72#endif /* !BOOTLOADER */
73/* #define IRAM_LCDFRAMEBUFFER IDATA_ATTR *//* put the lcd frame buffer in IRAM */ 73
74/* put the lcd frame buffer in IRAM */
75#define IRAM_LCDFRAMEBUFFER IBSS_ATTR
74 76
75#define CONFIG_KEYPAD SANSA_FUZE_PAD 77#define CONFIG_KEYPAD SANSA_FUZE_PAD
76 78