diff options
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/pacbox/pacbox.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c index 9bbc00d..8d44857 100644 --- a/apps/plugins/pacbox/pacbox.c +++ b/apps/plugins/pacbox/pacbox.c @@ -279,7 +279,12 @@ static bool pacbox_menu(void) /* Sound is emulated in ISR context, so not much is done per sound frame */ #define NBSAMPLES 128 static uint32_t sound_buf[NBSAMPLES]; +#if CONFIG_CPU == MCF5249 +/* Not enough to put this in IRAM */ +static int raw_buf[NBSAMPLES]; +#else static int raw_buf[NBSAMPLES] IBSS_ATTR; +#endif /* Audio callback |