亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? upsd3300_lcd.c

?? 增強(qiáng)型8位單片機(jī)UPSD33xx系列芯片常用片上外設(shè)的驅(qū)動(dòng)程序(ADC,TIMER,UART,I2C..)
?? C
?? 第 1 頁 / 共 2 頁
字號(hào):
/*------------------------------------------------------------------------------
upsd3300_lcd.c

Version:
November 30, 2004 - 2.0 - Initial Release.


Dependencies:
English font loaded into flash mapped into XDATA space at: ENGLISH_FONT_PAGE,
FONT_BASE_ADDRESS
Chinese font loaded into flash mapped into XDATA space at: 
CHINESE_FONT_PAGE, FONT_BASE_ADDRESS
Note: The Chinese font only needs to be loaded into flash if the option
ENGLISH_CHINESE_FONT is specified.

Description:
The uPSD3300 Enhanced LCD (ELCD) device driver is intended to provide functions 
to initialize the ELCD (GXM12232-1SL) and to display English ASCII characters
only or also Chinese characters.  The default compile option is for English 
only, but defining "ENGLISH_CHINESE_FONT" results in code compiled to support 
English characters and Chinese characters.

The font bit maps for English ASCII characters (0 to 127) are stored in flash
memory and is accessed via a standard lookup.  The font bit maps for user
defined Chinese characters are accessed via a special lookup operation.

Note: The lcd_init() function checks the first couple of bytes in the appropriate
location in flash memory to determine if the English font (and Chinese font, if
ENGLISH_CHINESE_FONT is defined) is loaded.  If it is not, the message "no font" 
is displayed on the LCD and the program execution loops forever in the lcd_init()
function.  In this case, the English font file (and the Chinese font file, if 
ENGLISH_CHINESE_FONT is defined) should be specified for placement in the 
appropriate flash sector in the PSDsoft project under "Merge MCU / DSP Firmware 
with PSD".  For messages to be displayed on the LCD, the appropriate font files
must be programmed into the flash for use by the printfLCD() function.


Copyright (c) 2004 STMicroelectronics Inc.

This example demo code is provided as is and has no warranty,
implied or otherwise.  You are free to use/modify any of the provided
code at your own risk in your applications with the expressed limitation
of liability (see below) so long as your product using the code contains
at least one uPSD product (device).

LIMITATION OF LIABILITY:   NEITHER STMicroelectronics NOR ITS VENDORS OR 
AGENTS SHALL BE LIABLE FOR ANY LOSS OF PROFITS, LOSS OF USE, LOSS OF DATA,
INTERRUPTION OF BUSINESS, NOR FOR INDIRECT, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES OF ANY KIND WHETHER UNDER THIS AGREEMENT OR
OTHERWISE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
------------------------------------------------------------------------------*/

#include "upsd3300.h"
#include "upsd3300_hardware.h"
#include "stdarg.h"

//#define ENGLISH_CHINESE_FONT  // This should be defined if the English/Chinese font 
                                 //  is supported.  If this is not defined, then the 
						         //  default is English only support.

//#define ST_LOGO_SUPPORT  // This should be defined if the ST logo will be
                           //  displayed on the LCD.

//#define FONT_BASE_ADDRESS  0x8000L
#define FONT_BASE_ADDRESS  0xE000L

#define E_FONT_DETECT_BYTE_0 0x1F  //English font
#define E_FONT_DETECT_BYTE_1 0xE0

#define C_FONT_DETECT_BYTE_0 0x80  //Chinese font
#define C_FONT_DETECT_BYTE_1 0x00

//#define ENGLISH_FONT_PAGE  5
#define ENGLISH_FONT_PAGE  0
#define CHINESE_FONT_PAGE  6

xdata  unsigned char wm_data      _at_   LCD_BASE_ADDR + 0x02;   //write data address
xdata  unsigned char rm_status    _at_   LCD_BASE_ADDR + 0x01;   //read command status address
xdata  unsigned char wm_command   _at_   LCD_BASE_ADDR + 0x00;   //write command address

xdata  unsigned char ws_data      _at_   LCD_BASE_ADDR + 0x06;   //write data address
xdata  unsigned char rs_status    _at_   LCD_BASE_ADDR + 0x05;   //read command status address
xdata  unsigned char ws_command   _at_   LCD_BASE_ADDR + 0x04;   //write command address


#ifndef ENGLISH_CHINESE_FONT
unsigned char dot_buffer[14];
#else
unsigned char dot_buffer[32];
#endif

unsigned char ucol = 0;   //ucol is a global variable,this point is very important.
unsigned char ulayer = 0; //ulayer is also a global variable,this point is very important.
unsigned char mode = 0;   //set the positive or negative display here

#ifdef ST_LOGO_SUPPORT

code unsigned char STlogo[32] = {0x03,0x40,0xc3,0x40,0xe3,0x41,0x33,0x43,0x33,0x46,0x33,0x6c,0x33,0x38,0x33,0x00,0x33,
                                 0x60,0x33,0x7c,0x33,0x1f,0xf3,0x03,0xf3,0x00,0x33,0x00,0x33,0x00,0x33,0x00};
#endif



// Define the bitmaps for  letters used to display "no font" if the font is not detected in memory.
code unsigned char nn[14] = {0x80,0x10,0x80,0x1f,0x00,0x11,0x80,0x00,0x80,0x10,0x00,0x1f,0x00,0x10}; // n
code unsigned char oo[14] = {0x00,0x00,0x00,0x0f,0x80,0x10,0x80,0x10,0x80,0x10,0x00,0x0f,0x00,0x00}; // o
code unsigned char ff[14] = {0x00,0x00,0x80,0x10,0xc0,0x1f,0xa0,0x10,0xa0,0x10,0xa0,0x10,0x00,0x00}; // f
code unsigned char tt[14] = {0x00,0x00,0x80,0x00,0xc0,0x0f,0x80,0x10,0x80,0x10,0x80,0x10,0x00,0x08}; // t

#ifdef ENGLISH_CHINESE_FONT
code unsigned char index[159]={//0xB1 & 0xB0 is the internal code of the Chinese character  "備" which is the first one in the user self-defined lib 
   0xB1, 0xB8, 0x00, 0xB1, 0xCF, 0x01, 0xB1, 0xE0, 0x02, 0xB2, 0xE9, 0x03, 0xB4, 0xA2, 0x04, 0xB4, 0xA5, 0x05, 0xB4, 0xD3, 0x06, 0xB4, 0xE6, 0x07,   //備畢編查儲(chǔ)觸從存
   0xB5, 0xBD, 0x08, 0xB5, 0xDA, 0x09, 0xB5, 0xF7, 0x0a, 0xB6, 0xAF, 0x0b, 0xB7, 0xA2, 0x0c, 0xB9, 0xAB, 0x0d, 0xB9, 0xB2, 0x0e, 0xBA, 0xCD, 0x0f,   //到第調(diào)動(dòng)發(fā)公共和
   0xBA, 0xCF, 0x10, 0xBB, 0xBB, 0x11, 0xBB, 0xD8, 0x12, 0xBB, 0xF9, 0x13, 0xBC, 0xC7, 0x14, 0xBC, 0xE4, 0x15, 0xBC, 0xFE, 0x16, 0xBE, 0xAD, 0x17,  //合換回基記間件經(jīng)
   0xBF, 0xB4, 0x18, 0xC1, 0xEE, 0x19, 0xC2, 0xBC, 0x1a, 0xC2, 0xEB, 0x1b, 0xC3, 0xC7, 0x1c, 0xC6, 0xDA, 0x1d, 0xC6, 0xF7, 0x1e, 0xC7, 0xD0, 0x1f,  //看令錄碼們期器切
   0xC7, 0xF8, 0x20, 0xC8, 0xD5, 0x21, 0xC9, 0xBE, 0x22, 0xC9, 0xE8, 0x23, 0xCA, 0xB1, 0x24, 0xCA, 0xBE, 0x25, 0xCA, 0xC2, 0x26, 0xCD, 0xEA, 0x27,  //區(qū)日刪設(shè)時(shí)示事完
   0xCE, 0xC4, 0x28, 0xCE, 0xD2, 0x29, 0xCF, 0xD6, 0x2a, 0xD0, 0xC2, 0x2b, 0xD1, 0xDD, 0x2c, 0xD2, 0xD1, 0x2d, 0xD4, 0xDA, 0x2e, 0xD6, 0xB8, 0x2f,  //文我現(xiàn)新演已在指
   0xD6, 0xC3, 0x30, 0xD6, 0xD0, 0x31, 0xD7, 0xAA, 0x32, 0xD7, 0xBC, 0x33, 0xD7, 0xE9, 0x34                    //置中轉(zhuǎn)準(zhǔn)組
};
#endif



//-----------------------------------------------------FOR LCD68------------------------------

/*---------------------------------------------------------------------------------------
Function:
	check whether master LCD is  busy or not .
Parameters:
	none 
Note:
	none  

----------------------------------------------------------------------------------------*/
void BusyCheck(void)			// wait until BF is cleared
{
	while ((rm_status & 0X80));
	
}

/*---------------------------------------------------------------------------------------
Function:
	check whether slave LCD is  busy or not .
Parameters:
	none 
Note:
	none  

----------------------------------------------------------------------------------------*/
void BusyCheckSlave(void)			// wait until BF is cleared
{
	while ((rs_status & 0X80));
	
}

/*---------------------------------------------------------------------------------------
Function:
	send one byte command to master LCD.
Parameters:
	i is  the user expected command to send to master LCD. 
Note:
	none  

----------------------------------------------------------------------------------------*/
void OutMasterCom( unsigned char i )   //   write master command
{

	BusyCheck();
	wm_command = i;

}

/*---------------------------------------------------------------------------------------
Function:
	send one byte command to slave LCD. 
Parameters:
	i is  the user expected command to send to slave LCD. 
Note:
	none  

----------------------------------------------------------------------------------------*/
void OutSlaveCom( unsigned char i )  //write slave command
{
	
	BusyCheckSlave();
	ws_command = i;

}

/*---------------------------------------------------------------------------------------
Function:
	display one byte data to master LCD. 
Parameters:
	i is  the user expected data to disply on master LCD. 
Note:
	none  

----------------------------------------------------------------------------------------*/
void OutMasterDat( unsigned char i )  //write master data
{

	BusyCheck();
	wm_data  = i;

}

/*---------------------------------------------------------------------------------------
Function:
	display one byte data to slave LCD. 
Parameters:
	i is  the user expected data to disply on slave LCD. 
Note:
	none  

----------------------------------------------------------------------------------------*/
void OutSlaveDat( unsigned char i )  //write slave data
{

	BusyCheckSlave();
	ws_data = i;

}



/*---------------------------------------------------------------------------------------
Function:
	this function is used to initialize master and slave LCD. 
Parameters:
	none 
Note:
	none  

----------------------------------------------------------------------------------------*/
void LcdConfig ( void )  //lcd initialization
{

	OutMasterCom ( 0xE2 );//software reset
	OutSlaveCom ( 0xE2 );

	OutMasterCom ( 0xAE );//display off
	OutSlaveCom ( 0xAE );

	OutMasterCom ( 0xA4 );//dynamic drive(normal)
	OutSlaveCom ( 0xA4  );
	
	OutMasterCom ( 0xA9 );//duty cycle
	OutSlaveCom ( 0xA9  );
	
	OutMasterCom ( 0xA0 );//clockwise output
	OutSlaveCom ( 0xA0 );
	
	OutMasterCom ( 0xEE );//read-modify-write off
	OutSlaveCom ( 0xEE );
	
	OutMasterCom( 0x00 ); //display column address	
	OutMasterCom ( 0xC0 );//display start line 	

	OutSlaveCom ( 0x00 );
	OutSlaveCom ( 0xC0 );
	
	OutMasterCom ( 0xAF ); //display on
	OutSlaveCom ( 0xAF );
	
}

/*---------------------------------------------------------------------------------------
Function:
	set the display page of master LCD and slave LCD simultaneously,the page range is 0 to 3,make sure the input
	will not exceed this range ,otherwise it will reach a undecided result.
Parameters:
	page0 is the user expected display page of slave LCD and page1 is that of master LCD. 
Note:
	the parameter page0 and page1 is ORed with 0xB0 respectively, the reason is to meet "set page address" command 
	requirement of LCD controler SED1520,Please refer to SED1520 series spec . 

----------------------------------------------------------------------------------------*/
void SetPage( unsigned char page0, unsigned char page1 )    //set page
{

	OutSlaveCom ( 0xB8|page0 );
	OutMasterCom( 0xB8|page1);

}

/*---------------------------------------------------------------------------------------
Function:
	set the display column of master LCD and slave LCD simultaneously,the column range is 0 to 61.
Parameters:
	address0 is the user expected display column of slave LCD and address1 is that of master LCD. 
Note:
	the parameter address0 and address1 is ANDed with 0x7f respectively, the reason is to meet "set column address" command 
	requirement of LCD controler SED1520,Please refer to SED1520 series spec  

----------------------------------------------------------------------------------------*/

void SetAddress( unsigned char address0,  unsigned char address1 )  //set column
{

	OutSlaveCom ( address0&0x7F );
	OutMasterCom( address1&0x7F );
	
}

/*---------------------------------------------------------------------------------------
Function:
	display one byte data to slave LCD. 
Parameters:
	ch is  the user expected data to disply on slave LCD. 
Note:
	none  

----------------------------------------------------------------------------------------*/
void PutChar0 ( unsigned char ch )   
{
	OutSlaveDat ( ch );
}

/*---------------------------------------------------------------------------------------
Function:
	display one byte data to master LCD. 
Parameters:
	ch is  the user expected data to disply on master LCD. 
Note:
	none  

----------------------------------------------------------------------------------------*/
void PutChar1( unsigned char ch )
{
	OutMasterDat ( ch );
}

/*---------------------------------------------------------------------------------------
Function:
	this function will clear the LCD disply,both slave and master LCD.
Parameters:
	none 
Note:
	none  

----------------------------------------------------------------------------------------*/
void lcd_clear ( void )   //clear screen
{
	unsigned char i;	
	unsigned char page;
	unsigned char orig_buscon;
           orig_buscon = BUSCON;   // Save buscon value
           BUSCON |= 0x3C;           // Set Xdata Read/Write to max wait states 
	for (page = 0;page<4;page++)
	{
		SetPage( page,page );
		SetAddress( 0,0 );
		for (i=0;i<61;i++)
		{
			PutChar0 ( 0 );
			PutChar1 ( 0 );
		}
	}
		ucol = 0;
		ulayer = 0;
		BUSCON = orig_buscon;  // Restore buscon value
}	


/*---------------------------------------------------------------------------------------
Function:
	this function is used to display a Chinese word. 
Parameters:
	x0:		start column address.
    layer:	if layer = 0,display the first line Chinese word,otherwise display the second line.
	width:	the number of column of a Chinese word dot matrix.
	bmp:	the pointer of the  dot matrix data.
Note:
	the LCD can only display two line Chinese word,so page 0 and 1 is to display the first line,page2
    and page 3 is to display the second line.

----------------------------------------------------------------------------------------*/
void DrawBmp ( unsigned char x0,bit layer,unsigned char width,unsigned char *bmp)   
{
	unsigned char x, address;
	unsigned char * dat;
	
	unsigned char i=0;
	unsigned char page =0; // if layer = 0;page = 0,so it will disply the first line Chinese word
	
	bit window = 0;  //display on master LCD
    dat = bmp;

	if(layer)
 		page=2;   //if layer >=0;then page = 2, it will disply the second line Chinese word

	for(x=x0;x<x0+width;x++)
	{
		if(x>121)
			 return;  //the column exceeded 121 will be ignored
		if (x>60) 	
		{ 
			window =1; //disply on slave LCD
			address = x%61;
		}
 		else 
		address = x;  //display on master LCD

		SetPage (page,page);      //disply the upper part of a Chinese word
		SetAddress(address,address);

		if (window) 
			PutChar0(dat[i]);
		else 
			PutChar1(dat[i]);


		SetPage (page+1,page+1);  //disply the lower part of a Chinese word
		SetAddress(address,address);

		if (window) 
			PutChar0(dat[i+1]);
		else 
			PutChar1(dat[i+1]);

		i+=2;  
	}
}

#ifdef STlogo_support
void DrawSTlogo (unsigned char *bmp)   
{
	unsigned char orig_buscon;
           orig_buscon = BUSCON;   // Save buscon value
           BUSCON |= 0x3C;           // Set Xdata Read/Write to max wait states

	DrawBmp(ucol,ulayer,16,bmp);//display  logo here
	ucol+=16; 
	BUSCON = orig_buscon;  // Restore buscon value
}
#endif

#ifdef ENGLISH_CHINESE_FONT
void DrawBmpAsc ( unsigned char x0,unsigned char layer,unsigned char width,unsigned char *bmp)
{
	unsigned char x, address;
	unsigned char * dat;
	
	unsigned char i=0;
	unsigned char page =0; // if layer = 0;page = 0,so it will disply the first line Chinese word
	
	bit window = 0;  //display on master LCD
    dat = bmp;

	if(layer)
 		page=2;   //if layer >=0;then page = 2, it will disply the second line Chinese word

	for(x=x0;x<x0+width;x++)
	{
		if(x>121)
			 return;  //the column exceeded 121 will be ignored
		if (x>60) 	
		{ 
			window =1; //disply on slave LCD
			address = x%61;
		}
 		else 
		address = x;  //display on master LCD

		SetPage (page,page);      //disply the upper part of a Chinese word
		SetAddress(address,address);

		if (window) 
			PutChar0(dat[i]);
		else 
			PutChar1(dat[i]);


		SetPage (page+1,page+1);  //disply the lower part of a Chinese word
		SetAddress(address,address);

		if (window) 
			PutChar0(dat[i+1]);
		else 
			PutChar1(dat[i+1]);

		i+=2;  
	}
}
#endif


void disp_one_asc(unsigned char col,unsigned char layer,unsigned char ascii_code,unsigned char mode)
{

	unsigned char  i,j;
	unsigned char xdata *ascii;
	extern xdata PSD_REGS PSD_reg;

	j = PSD_reg.PAGE;  // page number will be changed in fetching ASC font data, so reserve page number first
	PSD_reg.PAGE =ENGLISH_FONT_PAGE; 

	ascii = (unsigned char xdata *)(FONT_BASE_ADDRESS);

	for (i=0;i<14;i++)
	{
		if(mode) 
		{
			if(i%2==0)
			{
				dot_buffer[i] =	~ascii[ascii_code*14+i+1];
					
			}
			else 
 			{
				dot_buffer[i] =	~ascii[ascii_code*14+i-1];	
  			}
		 }
		else
		{
			if(i%2==0)
			{
				dot_buffer[i] =	ascii[ascii_code*14+i+1];
					
			}
			else 
 			{
				dot_buffer[i] =	ascii[ascii_code*14+i-1];	
  			}
		}
	}

		DrawBmp(col,layer,7,dot_buffer);  //disply the asc code after conversion
		PSD_reg.PAGE = j; //restore page number
}

#ifdef ENGLISH_CHINESE_FONT
void disp_one_asc2(unsigned char width,unsigned char length,unsigned char *pic)
{
	unsigned long i;
	for (i=0;i<width*length;i++)
	{
		if(mode) 
		{
			if(i%2==0)
			{
				dot_buffer[i] =	~pic[i+1];
					
			}
			if(i%2==1)
			{
				dot_buffer[i] =	~pic[i-1];
					

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美a级一区二区| 国产亚洲短视频| 91同城在线观看| 成人综合婷婷国产精品久久蜜臀| 经典三级在线一区| 九色综合国产一区二区三区| 久久精品噜噜噜成人av农村| 麻豆精品新av中文字幕| 麻豆精品久久久| 精品一区二区在线看| 国产一区欧美一区| 国产精品456| 成人免费av资源| 9人人澡人人爽人人精品| 97se狠狠狠综合亚洲狠狠| 99国产精品国产精品毛片| 波多野结衣中文字幕一区二区三区| 福利一区在线观看| 97久久精品人人做人人爽50路| 92国产精品观看| 欧美在线视频不卡| 6080日韩午夜伦伦午夜伦| 日韩精品专区在线| 久久久久久97三级| 日韩一区欧美小说| 亚洲一区二区三区影院| 视频一区二区不卡| 国产综合久久久久久鬼色| 成熟亚洲日本毛茸茸凸凹| 色综合网色综合| 在线成人免费视频| 久久只精品国产| 日本一区二区免费在线| 亚洲免费观看高清完整版在线 | 中文字幕综合网| 亚洲精品免费在线| 青青草一区二区三区| 国产九色精品成人porny| 91天堂素人约啪| 91精品国产欧美一区二区| 久久久久久久久久久久电影| 国产精品一区二区久激情瑜伽| 成人午夜视频免费看| 欧洲日韩一区二区三区| 精品美女被调教视频大全网站| 中文av一区二区| 无吗不卡中文字幕| 国产成人欧美日韩在线电影| 91成人网在线| 亚洲精品一区在线观看| 亚洲乱码中文字幕| 九九九精品视频| 91免费观看在线| 欧美va日韩va| 亚洲精品免费看| 久久成人免费电影| 色综合久久88色综合天天6| 欧美一区二区三区电影| 亚洲欧洲99久久| 美国av一区二区| 一本久久a久久精品亚洲| 日韩小视频在线观看专区| 亚洲欧美一区二区视频| 毛片av中文字幕一区二区| 色久优优欧美色久优优| 国产午夜精品在线观看| 五月激情综合婷婷| 9i看片成人免费高清| 欧美mv日韩mv国产| 亚洲在线视频免费观看| 成人午夜视频免费看| 日韩欧美在线一区二区三区| 亚洲欧美另类图片小说| 久久99国产精品尤物| 欧美日韩一区久久| 亚洲色图制服丝袜| 国产成人精品三级| 欧美刺激午夜性久久久久久久| 夜夜精品浪潮av一区二区三区| 国产成人小视频| 日韩精品资源二区在线| 午夜精品久久久久久不卡8050| 91一区在线观看| 亚洲国产精品精华液ab| 精品亚洲免费视频| 欧美一区二区三区四区在线观看 | 国产精品国产三级国产有无不卡| 蜜桃视频在线观看一区| 欧美日韩精品欧美日韩精品 | 亚洲女同一区二区| 成人一级片在线观看| 久久久久亚洲综合| 欧美日韩免费高清一区色橹橹 | 日韩欧美另类在线| 亚洲成av人片在线观看无码| 色综合久久综合中文综合网| 亚洲欧洲99久久| caoporn国产一区二区| 国产女人水真多18毛片18精品视频| 久久99九九99精品| 日韩欧美精品在线| 麻豆高清免费国产一区| 日韩一区二区免费在线电影| 午夜精品一区二区三区免费视频| 欧美最猛性xxxxx直播| 一区二区三区久久| 欧美亚洲日本国产| 亚洲国产成人va在线观看天堂| 一本一本大道香蕉久在线精品| 亚洲视频精选在线| 99精品黄色片免费大全| 亚洲人成7777| 在线免费不卡电影| 亚洲成精国产精品女| 欧美二区在线观看| 美腿丝袜亚洲综合| 久久亚洲私人国产精品va媚药| 麻豆国产精品777777在线| 欧美xingq一区二区| 国产九九视频一区二区三区| 日本一区二区电影| 99久久婷婷国产综合精品| 亚洲欧美日韩国产手机在线| 在线影院国内精品| 日韩精品午夜视频| 精品免费视频.| 国产成人亚洲精品狼色在线 | 高清免费成人av| 国产一区二区电影| 欧美激情中文字幕| 91视频.com| 日韩精品视频网站| 久久久久久久久久久久电影| 99精品欧美一区| 婷婷久久综合九色综合绿巨人| 欧美大片在线观看| 成人精品鲁一区一区二区| 亚洲欧美日韩久久| 6080日韩午夜伦伦午夜伦| 国产美女一区二区| 亚洲天堂免费看| 91精品国产一区二区三区蜜臀 | 国产一区二区三区久久悠悠色av| 欧美激情中文字幕一区二区| 在线影视一区二区三区| 精品一二线国产| 亚洲男人天堂一区| 欧美一级夜夜爽| 成人18视频日本| 水蜜桃久久夜色精品一区的特点| 2020国产精品| 日本高清免费不卡视频| 久草中文综合在线| 亚洲视频免费在线观看| 欧美videos中文字幕| 色哟哟国产精品| 理论电影国产精品| 亚洲精品老司机| 337p粉嫩大胆噜噜噜噜噜91av| 99久久er热在这里只有精品66| 日韩成人精品视频| 中文字幕一区二| 欧美一级xxx| voyeur盗摄精品| 蜜臀av性久久久久蜜臀av麻豆 | 国产成人av网站| 亚洲aⅴ怡春院| 国产精品欧美一区喷水| 日韩欧美一区二区在线视频| 色综合久久综合网欧美综合网 | 国产精品一区二区x88av| 亚洲国产精品久久人人爱蜜臀| 久久久久久久久久久99999| 欧美日韩一区二区三区高清| 成人一区二区三区中文字幕| 老司机精品视频导航| 亚洲在线免费播放| 1000部国产精品成人观看| 精品久久久三级丝袜| 欧美日韩你懂的| 色综合久久综合网97色综合| 国产99久久久国产精品潘金 | 国产成人av一区二区三区在线观看| 爽好久久久欧美精品| 亚洲欧美色图小说| 亚洲国产精品ⅴa在线观看| 日韩欧美国产电影| 欧美精品日韩一本| 日本电影欧美片| 91原创在线视频| 成人激情校园春色| 国产麻豆日韩欧美久久| 久久成人免费电影| 蜜臀av一区二区在线观看| 亚洲福利电影网| 亚洲一二三区在线观看| 亚洲精品综合在线| 亚洲欧美一区二区久久| 亚洲人成亚洲人成在线观看图片| 久久电影网站中文字幕|