Changeset 751d17a2 in mainline for uspace/drv/audio/sb16/dsp.c


Ignore:
Timestamp:
2011-11-11T17:53:33Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ea8f83
Parents:
f6062f15
Message:

sb16: Play 'beep' sound on startup. Reove debug statements from interrupt routines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/audio/sb16/dsp.c

    rf6062f15 r751d17a2  
    185185        pio_read_8(&dsp->regs->dsp_read_status);
    186186
    187         static size_t interrupt_count = 0;
    188 
    189187        const size_t remain_size = dsp->playing.size -
    190188            (dsp->playing.position - dsp->playing.data);
    191189
    192         ddf_log_note("Interrupt count %zu, remaining: %zu.\n",
    193             ++interrupt_count, remain_size);
    194190        if (remain_size == 0) {
    195191                ddf_log_note("Nothing more to play");
     
    215211                return;
    216212        }
    217         ddf_log_note("Playing full block.\n");
    218213        memcpy(dsp->buffer.position, dsp->playing.position, PLAY_BLOCK_SIZE);
    219214        write_barrier();
Note: See TracChangeset for help on using the changeset viewer.