summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/pacbox/pacbox.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c
index 9bbc00d094..8d44857666 100644
--- a/apps/plugins/pacbox/pacbox.c
+++ b/apps/plugins/pacbox/pacbox.c
@@ -279,7 +279,12 @@ static bool pacbox_menu(void)
279/* Sound is emulated in ISR context, so not much is done per sound frame */ 279/* Sound is emulated in ISR context, so not much is done per sound frame */
280#define NBSAMPLES 128 280#define NBSAMPLES 128
281static uint32_t sound_buf[NBSAMPLES]; 281static uint32_t sound_buf[NBSAMPLES];
282#if CONFIG_CPU == MCF5249
283/* Not enough to put this in IRAM */
284static int raw_buf[NBSAMPLES];
285#else
282static int raw_buf[NBSAMPLES] IBSS_ATTR; 286static int raw_buf[NBSAMPLES] IBSS_ATTR;
287#endif
283 288
284/* 289/*
285 Audio callback 290 Audio callback