1.1.3.5.2 DRV_GENERICCODEC_BufferAddWrite Function

void DRV_GENERICCODEC_BufferAddWrite

(

const DRV_HANDLE handle,

DRV_GENERICCODEC_BUFFER_HANDLE *bufferHandle,

void *buffer, size_t size

)

Summary

Schedule a non-blocking driver write operation.

Description

This function schedules a non-blocking write operation. The function returns with a valid buffer handle in the bufferHandle argument if the write request was scheduled successfully. The function adds the request to the hardware instance transmit queue and returns immediately. While the request is in the queue, the application buffer is owned by the driver and should not be modified. The function returns DRV_GENERICCODEC_BUFFER_HANDLE_INVALID:

  • if a buffer could not be allocated to the request

  • if the input buffer pointer is NULL

  • if the buffer size is 0.

  • if the queue is full or the queue depth is insufficient

If the requesting client registered an event callback with the driver, the driver will issue a DRV_GENERICCODEC_BUFFER_EVENT_COMPLETE event if the buffer was processed successfully of DRV_GENERICCODEC_BUFFER_EVENT_ERROR event if the buffer was not processed successfully.

Preconditions

The DRV_GENERICCODEC_Initialize routine must have been called for the specified Generic Codec device instance and the DRV_GENERICCODEC_Status must have returned SYS_STATUS_READY.

DRV_GENERICCODEC_Open must have been called to obtain a valid opened device handle.

DRV_IO_INTENT_WRITE must have been specified in the DRV_GENERICCODEC_Open call.

Parameters

ParametersDescription
handleHandle of the Generic Codec instance as return by the DRV_GENERICCODEC_Open function.
bufferData to be transmitted.
sizeBuffer size in bytes.
bufferHandlePointer to an argument that will contain the return buffer handle.

Returns

The bufferHandle parameter will contain the return buffer handle. This will be DRV_GENERICCODEC_BUFFER_HANDLE_INVALID if the function was not successful.

Remarks

This function is thread safe in a RTOS application. It can be called from within the Generic Codec Driver Buffer Event Handler that is registered by this client. It should not be called in the event handler associated with another Generic Codec driver instance. It should not otherwise be called directly in an ISR.

Example

MY_APP_OBJ myAppObj;

uint8_t mybuffer[MY_BUFFER_SIZE]; DRV_GENERICCODEC_BUFFER_HANDLE bufferHandle;

_// myGENERICCODECHandle is the handle returned // by the DRV_GENERICCODEC_Open function._

_// Client registers an event handler with driver_

DRV_GENERICCODEC_BufferEventHandlerSet(myGENERICCODECHandle,

DRV_GENERICCODECBufferEventHandler, (uintptr_t)&myAppObj);

DRV_GENERICCODEC_BufferAddWrite(myGENERICCODEChandle, &bufferHandle myBuffer, MY_BUFFER_SIZE); if(DRV_GENERICCODEC_BUFFER_HANDLE_INVALID == bufferHandle) {

_// Error handling here_

}

_// Event is received when // the buffer is processed._

void DRV_GENERICCODECBufferEventHandler(DRV_GENERICCODEC_BUFFER_EVENT event, DRV_GENERICCODEC_BUFFER_HANDLE bufferHandle, uintptr_t contextHandle)

{ _// contextHandle points to myAppObj._ switch(event) { case DRV_GENERICCODEC_BUFFER_EVENT_COMPLETE: _// This means the data was transferred._ break; case DRV_GENERICCODEC_BUFFER_EVENT_ERROR: _// Error handling here._

break; default: break; }

}

C

void DRV_GENERICCODEC_BufferAddWrite(const DRV_HANDLE handle, DRV_GENERICCODEC_BUFFER_HANDLE * bufferHandle, void * buffer, size_t size);