Data Fields
CameraCC32XXDMA_HWAttrs Struct Reference

CameraCC32XXDMA Hardware attributes. More...

#include <CameraCC32XXDMA.h>

Data Fields

uint32_t baseAddr
 
uint32_t intNum
 
uint32_t intPriority
 
unsigned long channelIndex
 

Detailed Description

CameraCC32XXDMA Hardware attributes.

These fields, with the exception of intPriority, are used by driverlib APIs and therefore must be populated by driverlib macro definitions. For CC32XXWare these definitions are found in:

intPriority is the Camera peripheral's interrupt priority, as defined by the underlying OS. It is passed unmodified to the underlying OS's interrupt handler creation code, so you need to refer to the OS documentation for usage. If the driver uses the ti.dpl interface instead of making OS calls directly, then the HwiP port handles the interrupt priority in an OS specific way. In the case of the SYS/BIOS port, intPriority is passed unmodified to Hwi_create().

A sample structure is shown below:

const CameraCC32XXDMA_HWAttrs CameraCC32XXDMAHWAttrs[] = {
{
.baseAddr = CAMERA_BASE,
.intNum = INT_CAMERA,
.intPriority = (~0),
.channelIndex = UDMA_CH22_CAMERA
}
};

Field Documentation

§ baseAddr

uint32_t CameraCC32XXDMA_HWAttrs::baseAddr

Camera Peripheral's base address

§ intNum

uint32_t CameraCC32XXDMA_HWAttrs::intNum

Camera Peripheral's interrupt vector

§ intPriority

uint32_t CameraCC32XXDMA_HWAttrs::intPriority

Camera Peripheral's interrupt priority

§ channelIndex

unsigned long CameraCC32XXDMA_HWAttrs::channelIndex

uDMA controlTable channel index


The documentation for this struct was generated from the following file:
© Copyright 1995-2019, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale