MityDSP Documentation Index
Public Member Functions | Protected Attributes | Static Protected Attributes
MityDSP::tcDspQvga16 Class Reference

The tcDspQvga16 class provides access to a 16-bit color QVGA (320x240 pixel) display device. More...

#include <core/DspQvga16.h>

Inheritance diagram for MityDSP::tcDspQvga16:
MityDSP::tcDspDisplayDriver

List of all members.

Public Member Functions

 tcDspQvga16 (void *apAddress, tcDspFpgaDma *apDma, int anDmaChannel, bool abPortrait=false)
 This constructor is used to open a tcDspQvga16 16-bit Quarter VGA display interface.
virtual ~tcDspQvga16 ()
 Default destructor.
virtual bool SetFrameBuffer (void *apBuffer)
 Updates the current frame buffer, and initiates DMA transfer from the provided buffer.
virtual void SetBacklight (float anPercent)
 This method sets the QVGA backlighting to the specified level.
virtual float GetBacklight (void)
 This method retrieves the current QVGA backlighting level.
virtual bool FlipDisplay (bool abFlip)
 This method is used to flip (or un-flip) the QVGA display presentation.
virtual bool IsFlipped (void)
 This method indicates whether or not the display is currently flipped.
- Public Member Functions inherited from MityDSP::tcDspDisplayDriver
 tcDspDisplayDriver (tcDspFpgaDma *apDma=NULL, int anDmaChannel=0)
 This constructor is used to open a tcDspDisplayDriver interface via the specified instance of tcDspFpgaDma and channel.
virtual ~tcDspDisplayDriver ()
 This destructor is used to close up and free the resources tied to the display driver.
virtual int GetWidthPixels (void)
 Retrieves display width in pixels.
virtual int GetHeightPixels (void)
 Retrieves display height in pixels.
virtual int GetDepthBits (void)
 Retrieves display color depth in bits per pixel.
virtual int GetFrameBufferBytes (void)
 Returns the required size of the frame buffer (in bytes).
virtual void * GetFrameBuffer (void)
 Retrieves the current frame buffer in use.
virtual bool GetScreenEnabled ()
 Returns true if the screen is enabled.
virtual void SetScreenEnabled (bool apEnable)
 Enables/Disables the screen.

Protected Attributes

volatile unsigned int * mpBaseAddr
 TouchScreen base address.
float mnBacklightDutyPercent
 Current backlight duty cycle (percent)
unsigned int mnBacklightDutyCounts
 Current backlight duty cycle (counts)
bool mbDisplayFlipped
 True if display is flipped.
- Protected Attributes inherited from MityDSP::tcDspDisplayDriver
LCK_Handle mhMutex
 Used to serialize access.
int mnWidthPixels
 Pixel width of display.
int mnHeightPixels
 Pixel height of display.
int mnDepthBits
 Color depth of display.
tcDspFpgaDmampDma
 Pointer to instance of tcDspFpgaDma.
int mnDmaChannel
 DMA channel to use.
void * mpFrameBuffer
 Current frame buffer address.
int mnFrameBufferBytes
 Bytes required in frame buffer.
CACHE_L2Mode msL2Mode
 Cache mode.
bool mbScreenEnabled
 Screen enable.

Static Protected Attributes

static const int gnBacklightMinValue = 0
 minimum backlight duty cycle value
static const int gnBacklightMaxValue = 256
 maximum backlight duty cycle value
static const int gnStartStopDelayMsec = 200
 startup/shutdown delay (msec)
static unsigned int mnTicksPerMsec = CLK_countspms() / CLK_getprd()
 Number of clocks per millisecond.

Detailed Description

The tcDspQvga16 class provides access to a 16-bit color QVGA (320x240 pixel) display device.

It is derived from the tcDspDisplayDriver base class to provide a consistent interface to the underlying frame buffer. Additional functions to set and get the display backlighting are provided. An instance of the tcDspFpgaDma class must be provided to exchange data with the device. This driver in turn may be used to setup direct access to the device's frame buffer, or may be used in conjunction with the tcDisplay class.

See also:
tcDspQvga16 Page

Constructor & Destructor Documentation

tcDspQvga16::tcDspQvga16 ( void *  apAddress,
tcDspFpgaDma apDma,
int  anDmaChannel,
bool  abPortrait = false 
)

This constructor is used to open a tcDspQvga16 16-bit Quarter VGA display interface.

This constructor registers the required FPGA DMA interface with the base class.

Parameters:
[in]apAddressBase Address of the 16-bit QVGA core
[in]apDmaPointer to an instance of tcDspFpgaDma to use to provide access to the frame buffer.
[in]anDmaChannelThe DMA channel in apDma to use.
[in]abPortraitTrue if the display is scanned in portrait mode, false if in landscape (default: false).
Returns:
None.
See also:
DspQvga16.h
DspDisplayDriver.h
tcDspQvga16::~tcDspQvga16 ( )
virtual

Default destructor.

Returns:
None.

Member Function Documentation

bool tcDspQvga16::SetFrameBuffer ( void *  apBuffer)
virtual

Updates the current frame buffer, and initiates DMA transfer from the provided buffer.

If NULL, DMA is disabled. In addition, if the frame buffer is transitioning from NULL, the LCD startup procedure is performed. Similarly, if transitioning to NULL, the shutdown procedure is performed.

Parameters:
[in]apBufferPointer to the new frame buffer.
Returns:
True if DMA scheduled (or disabled), false otherwise.
See also:
DspQvga16.h
DspDisplayDriver.h

Reimplemented from MityDSP::tcDspDisplayDriver.

void tcDspQvga16::SetBacklight ( float  anPercent)
virtual

This method sets the QVGA backlighting to the specified level.

The level is given as a percentage, where 0% is off, and 100% is full brightness.

Parameters:
[in]anPercentLCD backlight brightness percentage.
Returns:
None.
See also:
DspQvga16.h
float tcDspQvga16::GetBacklight ( void  )
virtual

This method retrieves the current QVGA backlighting level.

Returns:
Current LCD backlight brightness percentage..
See also:
DspQvga16.h
bool tcDspQvga16::FlipDisplay ( bool  abFlip)
virtual

This method is used to flip (or un-flip) the QVGA display presentation.

Note:
Flipping is done both horizontally and vertically. Individual control of horizontal or vertical flip is not available.
Parameters:
[in]abFlipSet to true to flip display, false to restore.
Returns:
New setting.
See also:
DspQvga16.h
bool tcDspQvga16::IsFlipped ( void  )
virtual

This method indicates whether or not the display is currently flipped.

Returns:
True if display is flipped.
See also:
DspQvga16.h

Member Data Documentation

const int MityDSP::tcDspQvga16::gnBacklightMinValue = 0
staticprotected

minimum backlight duty cycle value

const int MityDSP::tcDspQvga16::gnBacklightMaxValue = 256
staticprotected

maximum backlight duty cycle value

const int MityDSP::tcDspQvga16::gnStartStopDelayMsec = 200
staticprotected

startup/shutdown delay (msec)

unsigned int tcDspQvga16::mnTicksPerMsec = CLK_countspms() / CLK_getprd()
staticprotected

Number of clocks per millisecond.

volatile unsigned int* MityDSP::tcDspQvga16::mpBaseAddr
protected

TouchScreen base address.

float MityDSP::tcDspQvga16::mnBacklightDutyPercent
protected

Current backlight duty cycle (percent)

unsigned int MityDSP::tcDspQvga16::mnBacklightDutyCounts
protected

Current backlight duty cycle (counts)

bool MityDSP::tcDspQvga16::mbDisplayFlipped
protected

True if display is flipped.


  
Generated on Mon Apr 22 2013 11:33:04 for MityDSP Core by  Doxygen Version 1.8.1.1
Copyright © 2009, Critical Link LLC, All rights reserved.