view src/cs/drivers/drv_app/r2d/lcds/Customer/R2D_customer_lcd_i.h @ 304:58c7961bd0b0 default tip

TCH tap: extend DL sniffing feature to support CSD modes Our debug feature for TCH DL sniffing reads the content of the DSP's a_dd_0 buffer (or a_dd_1 for TCH/H subchannel 1) at appropriate times and forwards captured bits to the host. This feature was originally implemented for TCH/FS, TCH/EFS and TCH/HS - now extend it to cover TCH/F data modes too.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 25 Nov 2024 23:33:27 +0000
parents 4e78acac3d88
children
line wrap: on
line source

/*******************************

   LCD DESCRIPTION

*******************************/


// Size of the LCD in pixels
#define R2D_WIDTH 84
#define R2D_HEIGHT 48

// Dithering ON/OFF

#define R2D_DITHERING R2D_ON

//#define R2D_WIDTH 96
//#define R2D_HEIGHT 64

// Kind of display
#define R2D_LCD_DISPLAY R2D_MONOCHROME

// Refresh mode of LCD
#define R2D_REFRESH R2D_VERTICAL

// ln2 of the number of bits to code a pixel value
// (color depth)
#define R2D_PIXEL_DEPTH 1 

// ln2 of previous value
#define R2D_PIXEL_POS_TO_BIT_POS 0


// ln2 of the number of pixels in one memory word
// (Number of pixels MUST BE A POWER OF TWO 
// for optimization reasons since to compute the address of a pixel
// in memory one would like to avoid division and would prefer
// to use shifts)
// 2^5 = 32 pixels
#define R2D_PIXELS_PER_MEMORY_WORD 5