Recording queue should be set to IRQ safe mode as well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12983 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8f1bc1f00b
commit
e041a3200b
1 changed files with 1 additions and 0 deletions
|
@ -428,6 +428,7 @@ unsigned long pcm_rec_sample_rate(void)
|
||||||
void pcm_rec_init(void)
|
void pcm_rec_init(void)
|
||||||
{
|
{
|
||||||
queue_init(&pcmrec_queue, true);
|
queue_init(&pcmrec_queue, true);
|
||||||
|
queue_set_irq_safe(&pcmrec_queue, true);
|
||||||
queue_enable_queue_send(&pcmrec_queue, &pcmrec_queue_send);
|
queue_enable_queue_send(&pcmrec_queue, &pcmrec_queue_send);
|
||||||
pcmrec_thread_p =
|
pcmrec_thread_p =
|
||||||
create_thread(pcmrec_thread, pcmrec_stack, sizeof(pcmrec_stack),
|
create_thread(pcmrec_thread, pcmrec_stack, sizeof(pcmrec_stack),
|
||||||
|
|
Loading…
Reference in a new issue