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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 3510i.c

?? ARM7 + DS18B20的驅動程序
?? C
字號:
#include "..\inc\44b.h"
#include "..\inc\44blib.h"
#include "..\inc\common.h"
#include "..\inc\3510i.h"
#include "..\inc\aschz.h"
#include <stdlib.h>
#include <math.h>


unsigned int BGColor;
unsigned int PenColor;
unsigned char  InterfacePixelFormat;
void LCD_Delay(void)
{
	unsigned int i;
	for(i = 0; i < 32768; i ++)
		Delayus(1);
}

void LCD_Reset(void)
{
	bitclr(LCD_RST_PORT, LCD_RST);		//set RST = L
	LCD_Delay();
	bitset(LCD_RST_PORT, LCD_RST);		//set RST = H
	LCD_Delay();
}

void LCD_SendCommand(unsigned char cmd)
{
//	bitset(LCD_SIO_DDR, LCD_SIO);		//set SDI.DDR = 1
	bitclr(LCD_CS_PORT, LCD_CS);		//set CS = L
	bitclr(LCD_SCL_PORT, LCD_SCL);		//set SCK = L
	bitclr(LCD_SIO_PORT, LCD_SIO);		//send 0, for command
	bitset(LCD_SCL_PORT, LCD_SCL);		//set SCK = H, latch data
//Bit 0(MSB)
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(cmd & 0x80)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 1
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(cmd & 0x40)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 2
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(cmd & 0x20)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 3
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(cmd & 0x10)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 4
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(cmd & 0x08)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 5
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(cmd & 0x04)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 6
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(cmd & 0x02)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 7(LSB)
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(cmd & 0x01)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//done
}

void LCD_SendData(unsigned char data)
{
//	bitset(LCD_SIO_DDR, LCD_SIO);		//set SDI.DDR = 1
	bitclr(LCD_CS_PORT, LCD_CS);		//set CS = L
	bitclr(LCD_SCL_PORT, LCD_SCL);		//set SCK = L
	bitset(LCD_SIO_PORT, LCD_SIO);		//send 1, for command
	bitset(LCD_SCL_PORT, LCD_SCL);		//set SCK = H, latch data
//Bit 0(MSB)
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(data & 0x80)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 1
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(data & 0x40)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 2
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(data & 0x20)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 3
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(data & 0x10)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 4
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(data & 0x08)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 5
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(data & 0x04)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 6
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(data & 0x02)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//Bit 7(LSB)
	bitclr(LCD_SCL_PORT, LCD_SCL);
	if(data & 0x01)
		bitset(LCD_SIO_PORT, LCD_SIO);
	else
		bitclr(LCD_SIO_PORT, LCD_SIO);
	bitset(LCD_SCL_PORT, LCD_SCL);
//done
}
/*
void LCD_ReadDummy(void)
{
	//bitclr(LCD_SIO_DDR, LCD_SIO);		//set SDI.DDR = 0
	bitset(LCD_SIO_PORT, LCD_SIO);	
	bitclr(LCD_CS_PORT, LCD_CS);		//set CS = L
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
}

unsigned char LCD_ReadData(void)
{
	unsigned char r = 0;
	//bitclr(LCD_SIO_DDR, LCD_SIO);		//set SDI.DDR = 0
	bitset(LCD_SIO_PORT, LCD_SIO);	
	bitclr(LCD_CS_PORT, LCD_CS);		//set CS = L
//Bit 0(MSB)
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
	if(bit_is_set(LCD_SIO_PIN, LCD_SIO))
		r |= 0x80;
	else
		r &= ~0x80;
//Bit 1
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
	if(bit_is_set(LCD_SIO_PIN, LCD_SIO))
		r |= 0x40;
	else
		r &= ~0x40;
//Bit 2
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
	if(bit_is_set(LCD_SIO_PIN, LCD_SIO))
		r |= 0x20;
	else
		r &= ~0x20;
//Bit 3
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
	if(bit_is_set(LCD_SIO_PIN, LCD_SIO))
		r |= 0x10;
	else
		r &= ~0x10;
//Bit 4
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
	if(bit_is_set(LCD_SIO_PIN, LCD_SIO))
		r |= 0x08;
	else
		r &= ~0x08;
//Bit 5
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
	if(bit_is_set(LCD_SIO_PIN, LCD_SIO))
		r |= 0x04;
	else
		r &= ~0x04;
//Bit 6
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
	if(bit_is_set(LCD_SIO_PIN, LCD_SIO))
		r |= 0x02;
	else
		r &= ~0x02;
//Bit 7(LSB)
	bitclr(LCD_SCL_PORT, LCD_SCL);
	bitset(LCD_SCL_PORT, LCD_SCL);
	if(bit_is_set(LCD_SIO_PIN, LCD_SIO))
		r |= 0x01;
	else
		r &= ~0x01;
//done
	return r;
}
*/
void LCD_Initialize(void)
{
	unsigned char i;

	bitset(LCD_RST_PORT, LCD_RST);		//set RST = H
	//bitset(LCD_RST_DDR, LCD_RST);	//set RST.DDR = 1
	bitset(LCD_CS_PORT, LCD_CS);		//set CS = H
//	bitset(LCD_CS_DDR, LCD_CS);	//set CS.DDR = 1
	bitclr(LCD_SIO_PORT, LCD_SIO);		//set SDI = L
	//bitclr(LCD_SIO_DDR, LCD_SIO);	//set SDI.DDR = 0
	bitset(LCD_SCL_PORT, LCD_SCL);		//set SCK = H
	//bitset(LCD_SCL_DDR, LCD_SCL);	//set SCK.DDR = 1

	LCD_Reset();

	LCD_SendCommand(0x01);		//software reset
	LCD_DataOver();
	LCD_Delay();

	LCD_SendCommand(0xc6);		//initial escape
	LCD_DataOver();

	LCD_SendCommand(0xb9);		//refresh set
	LCD_SendData(0x00);
	LCD_DataOver();

	LCD_SendCommand(0xb6);		//display control
	LCD_SendData(0x80);
	LCD_SendData(0x7f);
	LCD_SendData(0x14);
	LCD_SendData(84);
	LCD_SendData(69);
	LCD_SendData(82);
	LCD_SendData(67);
	LCD_DataOver();

	LCD_SendCommand(0xb3);		//gray scale position set
	LCD_SendData(1);
	LCD_SendData(2);
	LCD_SendData(4);
	LCD_SendData(8);
	LCD_SendData(16);
	LCD_SendData(30);
	LCD_SendData(40);
	LCD_SendData(50);
	LCD_SendData(60);
	LCD_SendData(70);
	LCD_SendData(80);
	LCD_SendData(90);
	LCD_SendData(100);
	LCD_SendData(110);
	LCD_SendData(127);
	LCD_DataOver();

	LCD_SendCommand(0xb5);		//gamma curve set
	LCD_SendData(0x01);
	LCD_DataOver();

	LCD_SendCommand(0xbd);		//common driver output select
	LCD_SendData(0x00);
	LCD_DataOver();

	LCD_SendCommand(0xbe);		//power control
	LCD_SendData(0x04);
	LCD_DataOver();

	LCD_SendCommand(0x11);		//sleep out
	LCD_DataOver();
	
	LCD_SendCommand(0xba);		//voltage control
	LCD_SendData(127);
	LCD_SendData(3);
	LCD_DataOver();

	LCD_SendCommand(0xb7);		//temperature gradient set
	for(i = 0; i < 14; i ++)
		LCD_SendData(0x00);
	LCD_DataOver();

	LCD_SendCommand(0x29);		//display ON
	LCD_DataOver();

	LCD_SendCommand(0x03);		//booster voltage ON
	LCD_DataOver();
	LCD_Delay();

	LCD_SendCommand(0x20);		//display inversion OFF
	LCD_DataOver();
	
	LCD_SendCommand(0x3a);		//interface pixel format
	LCD_SendData(0x02);
	LCD_DataOver();
	InterfacePixelFormat = 0;
	LCD_SendCommand(0x2d);		//colour set
//red
	LCD_SendData(0x00);
	LCD_SendData(0x02);
	LCD_SendData(0x03);
	LCD_SendData(0x04);
	LCD_SendData(0x05);
	LCD_SendData(0x06);
	LCD_SendData(0x08);
//green
	LCD_SendData(0x0f);
	LCD_SendData(0x00);
	LCD_SendData(0x02);
	LCD_SendData(0x03);
	LCD_SendData(0x04);
	LCD_SendData(0x05);
	LCD_SendData(0x06);
	LCD_SendData(0x08);
	LCD_SendData(0x0f);
//blue
	LCD_SendData(0x00);
	LCD_SendData(0x03);
	LCD_SendData(0x06);
	LCD_SendData(0x0f);
	LCD_DataOver();

	LCD_SendCommand(0x25);		//write contrast
	LCD_SendData(71);
	LCD_DataOver();
	
	BGColor = 0x00;
	PenColor = 0xff;
}

void LCD_InterfacePixelFormat(unsigned char color)   //interface pixel format
{
  	LCD_SendCommand(0x3a);
  	if(color)		
	{
		LCD_SendData(0x03);   //4096color
		InterfacePixelFormat = 1;
	}
	else
	{
		LCD_SendData(0x02);   //256color
		InterfacePixelFormat = 0;	
	}
	LCD_DataOver();
}

void LCD_ClearScreen(unsigned char color)
{
	unsigned char x, y;
	if (color == 1 && InterfacePixelFormat == 0)
	{
		LCD_InterfacePixelFormat(1);
	}
	else
	{
		if (color == 0 && InterfacePixelFormat == 1)
		{
			LCD_InterfacePixelFormat(0);
		}
	}
	LCD_SendCommand(0x2a);		//column address set
	LCD_SendData(0);
	LCD_SendData(97);
	LCD_DataOver();

	LCD_SendCommand(0x2b);		//page address set
	LCD_SendData(0);
	LCD_SendData(66);
	LCD_DataOver();
	
	LCD_SendCommand(0x2c);		//memory write
	if (color)
	{
		for(y = 0; y < 67; y ++)
		{
			for(x = 0; x < 98; x += 2)
			{
				LCD_SendData(BGColor >> 4);
				LCD_SendData(((BGColor & 0x00f) << 4) | (BGColor >> 8));
				LCD_SendData(BGColor & 0x0ff);
			}
		}
	}	
	else
	{
		for(y = 0; y < 67; y ++)
		{
			for(x = 0; x < 98; x ++)
			{
				LCD_SendData(BGColor);
			}
		}
	}
	LCD_DataOver();
}
/*
void LCD_ReadPixel(unsigned char x1, unsigned char y1, unsigned char x2, unsigned char y2, unsigned char *b)
{
	unsigned char x, y;
	LCD_SendCommand(0x2a);		//column address set
	LCD_SendData(x1);
	LCD_SendData(x2);
	LCD_DataOver();

	LCD_SendCommand(0x2b);		//page address set
	LCD_SendData(y1);
	LCD_SendData(y2);
	LCD_DataOver();
	
	LCD_SendCommand(0x2e);		//RAM data read
	
	for(y = y1; y <= y2; y ++)
		for(x = x1; x <= x2; x ++)
		{
			LCD_ReadDummy();
			*(b ++) = LCD_ReadData();
		}
	LCD_DataOver();

	LCD_SendCommand(0x00);		//NOP
	LCD_SendData(0x00);
	LCD_DataOver();
}*/
void LCD_WriteString(unsigned char x, unsigned char y,unsigned char *n,unsigned char len,unsigned char backcolor,unsigned char stringcolor)
{
	unsigned char ListLength;
	unsigned char ii,i,dd,kk,aa;

	ListLength=len;
	for (kk=0; kk<ListLength; kk++)
	{
		LCD_SendCommand(0x2a);//column address set
	    if((x + 7) > 97)
	    {
	    	x = 0;
	   	}
	    LCD_SendData(x);
		LCD_SendData(x+7);
		
	 	LCD_DataOver(); 

	    LCD_SendCommand(0x2B);//page address set
	    
	    LCD_SendData(y);
		LCD_SendData(y+15);
	 	LCD_DataOver(); 	
		
		LCD_SendCommand(0x2C);		//memory write

		for (i=0;i<16;i++)
		{
	    	aa=n[kk];
	    	dd=asc[i + (n[kk] - 32) * 16];
        	for(ii=0;ii<8;ii++)
            {
                if(dd & 0x80)
                {
                	LCD_SendData(stringcolor);
               	}   
             	else
				{
					LCD_SendData(backcolor);
				}
            	dd = dd << 1;
			}
		}	
		x=x+8;
	}
	LCD_DataOver();
}

void LCD_WritePixel(unsigned char color, unsigned char x1, unsigned char y1, unsigned char x2, unsigned char y2, const unsigned char *b)
{
	unsigned char x, y;
	if ((color == 1) && (InterfacePixelFormat == 0))
	{
		LCD_InterfacePixelFormat(1);
	}
	else
	{
		if ((color == 0) && (InterfacePixelFormat == 1))
		{
			LCD_InterfacePixelFormat(0);
		}
	}
	LCD_SendCommand(0x2a);		//column address set
	LCD_SendData(x1);
	LCD_SendData(x2);
	LCD_DataOver();

	LCD_SendCommand(0x2b);		//page address set
	LCD_SendData(y1);
	LCD_SendData(y2);
	LCD_DataOver();
	
	LCD_SendCommand(0x2c);		//memory write
	if(color)
	{
		for(y = y1; y <= y2; y ++)
		{
			for(x = x1; x <= x2; x +=2)
			{
				LCD_SendData(*(b ++));
				LCD_SendData(*(b ++));
				LCD_SendData(*(b ++));
			}
		}
	}
	else
	{
		for(y = y1; y <= y2; y ++)
		for(x = x1; x <= x2; x ++)
			LCD_SendData(*(b ++));
	}
	LCD_DataOver();
}

void LCD_DrawPoint(unsigned char color, unsigned char x, unsigned char y)
{
	if ((color == 1) && (InterfacePixelFormat == 0))
	{
		LCD_InterfacePixelFormat(1);
	}
	else
	{
		if ((color == 0) && (InterfacePixelFormat == 1))
		{
			LCD_InterfacePixelFormat(0);
		}
	}
	LCD_SendCommand(0x2a);		//column address set
	LCD_SendData(x);
	LCD_SendData(x);
	LCD_DataOver();

	LCD_SendCommand(0x2b);		//page address set
	LCD_SendData(y);
	LCD_SendData(y);
	LCD_DataOver();
	
	LCD_SendCommand(0x2c);		//memory write
	if(color)
	{
		LCD_SendData(PenColor >> 4);
		LCD_SendData(((PenColor & 0x00f) << 4) | (PenColor >> 8));
		LCD_SendData(PenColor & 0x0ff);
	}
	else
	{
		LCD_SendData(PenColor);
	}
	LCD_DataOver();
}

void LCD_DrawLine(unsigned char color, unsigned char x1, unsigned char y1, unsigned char x2, unsigned char y2)
{
	unsigned char x, y, t;
	if((x1 == x2) && (y1 == y2))
		LCD_DrawPoint(color, x1, y1);
	else if(abs(y2 - y1) > abs(x2 - x1))
	{
		if(y1 > y2)
		{
			t = y1;
			y1 = y2;
			y2 = t;
			t = x1;
			x1 = x2;
			x2 = t;
		}
		for(y = y1; y <= y2; y ++)
		{
			x = (y - y1) * (x2 - x1) / (y2 - y1) + x1;
			LCD_DrawPoint(color, x, y);
		}
	}
	else
	{
		if(x1 > x2)
		{
			t = y1;
			y1 = y2;
			y2 = t;
			t = x1;
			x1 = x2;
			x2 = t;
		}
		for(x = x1; x <= x2; x ++)
		{
			y = (x - x1) * (y2 - y1) / (x2 - x1) + y1;
			LCD_DrawPoint(color, x, y);
		}
	}
}

void LCD_DrawRectangle(unsigned char color, unsigned char x1, unsigned char y1, unsigned char x2, unsigned char y2)
{
	LCD_DrawLine(color, x1, y1, x2, y1);
	LCD_DrawLine(color, x2, y1, x2, y2);
	LCD_DrawLine(color, x2, y2, x1, y2);
	LCD_DrawLine(color, x1, y2, x1, y1);
}

void LCD_DrawImage(unsigned char color,const unsigned char *p)
{ 
	LCD_WritePixel(color, 0, 0, 97, 66, p);
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品日日鲁夜夜添| 国产蜜臀97一区二区三区| 日韩一卡二卡三卡四卡| 国产精品久久久久久久久搜平片 | 日韩精品久久理论片| 国产麻豆91精品| 欧美美女喷水视频| 亚洲欧洲性图库| 麻豆国产欧美一区二区三区| 91久久国产综合久久| 精品精品国产高清一毛片一天堂| 亚洲激情一二三区| 国产剧情av麻豆香蕉精品| 欧美日韩国产在线播放网站| 亚洲色图欧洲色图| 国产成人免费在线视频| 日韩亚洲欧美一区二区三区| 亚洲精品乱码久久久久| 成人avav在线| 国产欧美一区二区在线观看| 六月丁香婷婷久久| 91精品国产综合久久精品app| 亚洲特级片在线| 成人免费视频一区二区| 国产亚洲短视频| 国产原创一区二区三区| 日韩一区二区中文字幕| 日本亚洲三级在线| 欧美巨大另类极品videosbest | 国产一区二区三区免费在线观看| 欧美三级在线视频| 亚洲精品精品亚洲| 91一区一区三区| 自拍偷拍欧美精品| av网站一区二区三区| 日本一区二区不卡视频| 国产成人一级电影| 欧美国产综合一区二区| 岛国精品在线播放| 国产日产欧产精品推荐色| 国产麻豆成人精品| 国产蜜臀av在线一区二区三区| 国产老女人精品毛片久久| 久久久国产午夜精品| 国产91在线观看丝袜| 国产精品三级av在线播放| 成人精品视频.| 亚洲日本va午夜在线电影| 91欧美激情一区二区三区成人| 亚洲欧洲中文日韩久久av乱码| 一本色道久久综合亚洲aⅴ蜜桃| ㊣最新国产の精品bt伙计久久| 一本一本久久a久久精品综合麻豆| 亚洲视频在线一区| 欧美日韩激情一区| 久久精品国产第一区二区三区| 久久久久久免费| 不卡视频在线观看| 亚洲一区二区三区四区在线观看| 欧美日韩aaaaaa| 狠狠色丁香久久婷婷综| 国产精品久久久久久一区二区三区 | 亚洲一区影音先锋| 欧美一区二区三区白人| 国产美女精品一区二区三区| 国产精品电影一区二区| 欧美视频自拍偷拍| 国产一区二区三区在线观看免费 | 最新中文字幕一区二区三区 | 国产在线视频不卡二| 国产精品美女久久久久久久久久久| 色综合久久综合| 日韩av不卡一区二区| 亚洲国产高清在线| 欧美日本一区二区三区| 懂色av一区二区三区蜜臀 | 视频精品一区二区| 国产亲近乱来精品视频| 在线免费av一区| 91在线国产观看| 首页国产欧美久久| 中文在线一区二区| 制服丝袜亚洲色图| 99精品黄色片免费大全| 久久精品国产色蜜蜜麻豆| 亚洲激情自拍视频| 亚洲国产精品ⅴa在线观看| 3d成人h动漫网站入口| 99久久久精品| 国产精品一卡二卡在线观看| 亚洲国产你懂的| 国产精品区一区二区三| 日韩一区二区麻豆国产| 色嗨嗨av一区二区三区| 国产91在线观看| 另类综合日韩欧美亚洲| 亚洲成人精品一区| 亚洲婷婷国产精品电影人久久| 精品国产电影一区二区| 91精品国产综合久久久久| 色美美综合视频| 99久久亚洲一区二区三区青草| 国模大尺度一区二区三区| 天堂va蜜桃一区二区三区漫画版| 最新日韩在线视频| 国产精品国产三级国产a| 久久久久久久久久久久电影| 日韩精品一区二区三区四区| 欧美日韩午夜精品| 精品视频一区二区不卡| 日本高清不卡aⅴ免费网站| 成人sese在线| 不卡视频在线观看| 99久久伊人精品| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 亚洲国产精品激情在线观看| 久久久久久麻豆| 久久久久久麻豆| 国产区在线观看成人精品| 久久久www成人免费毛片麻豆| 久久综合九色欧美综合狠狠| 欧美xxxx在线观看| 久久综合九色综合欧美98| 久久蜜桃香蕉精品一区二区三区| 亚洲精品一区二区三区在线观看| 精品少妇一区二区| 欧美精品一区二区蜜臀亚洲| 欧美精品一区二区久久婷婷| 久久亚区不卡日本| 国产三级精品视频| 亚洲欧洲日产国产综合网| 最新国产の精品合集bt伙计| 亚洲欧美综合另类在线卡通| 亚洲激情在线播放| 五月综合激情网| 久久国产精品无码网站| 国产毛片一区二区| 97精品久久久久中文字幕| 欧美性生活影院| 3atv一区二区三区| 国产亚洲一区二区三区四区 | 日韩国产欧美一区二区三区| 久久精品国产在热久久| 国产精品系列在线播放| av不卡免费在线观看| 欧美调教femdomvk| 亚洲精品在线三区| 国产精品毛片久久久久久| 亚洲一级电影视频| 国精产品一区一区三区mba桃花| 成人av在线资源| 欧美午夜精品一区二区蜜桃 | 欧美va亚洲va国产综合| 国产日韩一级二级三级| 亚洲午夜久久久久中文字幕久| 久久精品国产一区二区三| 国产99久久久精品| 欧美日韩中文字幕一区| 国产天堂亚洲国产碰碰| 亚洲午夜电影在线观看| 国产夫妻精品视频| 欧美日韩国产小视频在线观看| 26uuu久久综合| 午夜私人影院久久久久| 国产91丝袜在线播放| 91精品国产高清一区二区三区蜜臀| 久久久精品2019中文字幕之3| 亚洲国产美女搞黄色| 99视频超级精品| 精品国产一区久久| 一区二区理论电影在线观看| 国产1区2区3区精品美女| 69堂亚洲精品首页| 1024成人网色www| 国产精品影视天天线| 欧美视频一二三区| 国产精品乱码一区二三区小蝌蚪| 日韩高清不卡一区二区| 91一区二区在线| 久久久久久久性| 青青草国产精品97视觉盛宴| 92国产精品观看| 国产偷国产偷精品高清尤物| 免费人成精品欧美精品| 91成人在线观看喷潮| 国产精品国产馆在线真实露脸 | 一区二区三区91| 9久草视频在线视频精品| 久久综合久久鬼色中文字| 免费欧美日韩国产三级电影| 欧美日韩一级二级| 一区二区三国产精华液| 欧美中文字幕一区二区三区亚洲| 国产精品久久久久久久久久久免费看| 久久精品二区亚洲w码| 欧美一级二级三级乱码| 日本欧美在线观看| 8v天堂国产在线一区二区| 亚洲一区二区在线观看视频 | 久久99精品久久久久久久久久久久|