Home  /  Autodocs  /  audio.device

NAME

CMD_WRITE
normal I/O entry point

FUNCTION

CMD_WRITE is a standard command for a single audio channel (io_Unit). If the allocation key (ioa_AllocKey) is correct, CMD_WRITE plays a sound using the selected channel; otherwise, it returns an error (ADIOERR_NOALLOCATION). CMD_WRITE queues up requests if there is another write in progress or if the channel is stopped (CMD_STOP). When the write actually starts; if the ADIOF_PERVOL flag is set, CMD_WRITE loads volume (ioa_Volume) and period (ioa_Period), and if the ADIOF_WRITEMESSAGE flag is set, CMD_WRITE replies the write message (ioa_WriteMsg). CMD_WRITE returns an error (IOERR_ABORTED) if it is canceled (AbortIO) or the channel is stolen (ADCMD_ALLOCATE). CMD_WRITE is only asynchronous if there is no error, in which case it clears the quick flag (IOF_QUICK) and replies the I/O request (mn_ReplyPort) after it finishes writting; otherwise, it is synchronous and only replies if the quick flag (IOF_QUICK) is clear. Do not use CMD_WRITE in interrupt code at interrupt level 5 or higher.

INPUTS

io_Device
Pointer to device node, must be set by (or copied from I/O block set by) OpenDevice function

io_Unit
Bit map of channel to write (bit 0 thru 3 corresponds to channel 0 thru 3), if more then one bit is set lowest bit number channel is written

io_Command
Command number for CMD_WRITE

io_Flags
Flags, must be cleared if not used: ADIOF_PERVOL - (SET) load volume and period ADIOF_WRITEMESSAGE - (SET) reply message at write start

ioa_AllocKey
Allocation key, must be set by (or copied from I/O block set by) OpenDevice function or ADCMD_ALLOCATE command

ioa_Data
Pointer to waveform array (signed bytes (-128 thru 127) in custom chip addressable ram and word aligned)

ioa_Length
Length of the wave array in bytes (2 thru 131072, must be even number)

ioa_Period
Sample period in 279.365 ns increments (124 thru 65536, anti-aliasing filter works below 300 to 500 depending on waveform), if enabled by ADIOF_PERVOL

ioa_Volume
Volume (0 thru 64, linear), if enabled by ADIOF_PERVOL

ioa_Cycles
Number of times to repeat array (0 thru 65535, 0 for infinite)

ioa_WriteMsg
Message replied at start of write, if enabled by ADIOF_WRITEMESSAGE; see NOTES below

RESULT

io_Unit
Bit map of channel successfully written (bit 0 thru 3 corresponds to channel 0 thru 3)

io_Flags
IOF_QUICK flag cleared if there is no error

io_Error
Error number: 0 - no error IOERR_ABORTED - canceled (AbortIO) or channel

stolen

ADIOERR_NOALLOCATION
allocation key (ioa_AllocKey) does not match key for channel

NOTES

If you are going to set ADIOF_WRITEMESSAGE in io_Flags then you will also have to initialize the ioa_WriteMsg.mn_ReplyPort field. Otherwise, no message may be sent (if ioa_WriteMsg.mn_ReplyPort is NULL) or undefined behaviour may follow. audio.device will not initialize the ioa_WriteMsg member for you. Please note that audio.device will really call ReplyMsg() on the ioa_WriteMsg member, not PutMsg().

BUGS

If CMD_WRITE starts the write immediately after stopping a previous write, you must set the ADIOF_PERVOL flag or else the new data pointer (ioa_Data) and length (ioa_Length) may not be loaded.