高中生
最后登录1970-1-1
在线时间 小时
注册时间2014-10-12
|
int main(void)
{
LED_GPIO_Init();
LCD_Init(); //òo¾§3õê¼»ˉ
Ov7725_GPIO_Config(); //ov7725 gpio 3õê¼»ˉ
while(Ov7725_Init() != SUCCESS); //ov7725 ¼Ä′æÆ÷ÅäÖÃ3õê¼»ˉ
VSYNC_Init(); //ov7725 3¡DÅoÅÏß3õê¼»ˉ
Ov7725_vsync = 0;
while(1)
{
if( Ov7725_vsync == 2 )
{
if(Trace(&Condition,&Resu))
{
LCD_Clear(Resu.x-Resu.w/2,Resu.y-Resu.h/2,Resu.w,1,0xf800);
LCD_Clear(Resu.x-Resu.w/2,Resu.y-Resu.h/2,1,Resu.h,0xf800);
LCD_Clear(Resu.x-Resu.w/2,Resu.y+Resu.h/2,Resu.w,1,0xf800);
LCD_Clear(Resu.x+Resu.w/2,Resu.y-Resu.h/2,1,Resu.h,0xf800);
LCD_Clear(Resu.x-2,Resu.y-2,4,4,0xf800);
}
Ov7725_vsync = 0;
}
}
}
中断里面刷新摄像头画面的
|
|