summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playback.c6
-rw-r--r--firmware/drivers/lcd-h100-remote.c5
-rw-r--r--firmware/drivers/lcd-h100.c6
3 files changed, 3 insertions, 14 deletions
diff --git a/apps/playback.c b/apps/playback.c
index d5866121ba..edeaedb118 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -110,11 +110,7 @@ static const char audio_thread_name[] = "audio";
110 110
111/* Codec thread. */ 111/* Codec thread. */
112static struct event_queue codec_queue; 112static struct event_queue codec_queue;
113static long codec_stack[(DEFAULT_STACK_SIZE + 0x2500)/sizeof(long)] 113static long codec_stack[(DEFAULT_STACK_SIZE + 0x2500)/sizeof(long)] IDATA_ATTR;
114#ifndef SIMULATOR
115__attribute__ ((section(".idata")))
116#endif
117;
118static const char codec_thread_name[] = "codec"; 114static const char codec_thread_name[] = "codec";
119 115
120static struct mutex mutex_bufferfill; 116static struct mutex mutex_bufferfill;
diff --git a/firmware/drivers/lcd-h100-remote.c b/firmware/drivers/lcd-h100-remote.c
index eaf61260cb..8fa193ac9b 100644
--- a/firmware/drivers/lcd-h100-remote.c
+++ b/firmware/drivers/lcd-h100-remote.c
@@ -67,10 +67,7 @@
67/*** globals ***/ 67/*** globals ***/
68 68
69unsigned char lcd_remote_framebuffer[LCD_REMOTE_HEIGHT/8][LCD_REMOTE_WIDTH] 69unsigned char lcd_remote_framebuffer[LCD_REMOTE_HEIGHT/8][LCD_REMOTE_WIDTH]
70#ifndef SIMULATOR 70 IDATA_ATTR;
71 __attribute__ ((section(".idata")))
72#endif
73 ;
74 71
75static int drawmode = DRMODE_SOLID; 72static int drawmode = DRMODE_SOLID;
76static int xmargin = 0; 73static int xmargin = 0;
diff --git a/firmware/drivers/lcd-h100.c b/firmware/drivers/lcd-h100.c
index 379838d068..1a40a2535c 100644
--- a/firmware/drivers/lcd-h100.c
+++ b/firmware/drivers/lcd-h100.c
@@ -60,11 +60,7 @@
60 60
61/*** globals ***/ 61/*** globals ***/
62 62
63unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH] 63unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH] IDATA_ATTR;
64#ifndef SIMULATOR
65 __attribute__ ((section(".idata")))
66#endif
67 ;
68 64
69static int drawmode = DRMODE_SOLID; 65static int drawmode = DRMODE_SOLID;
70static int xmargin = 0; 66static int xmargin = 0;