uint16_t tupian[240][320]={0};
void ImagDisp(void)
{
uint16_t i, j;
uint16_t Camera_Data;
for(i = 0; i < 240; i++)
{
for(j = 0; j < 320; j++)
{
READ_FIFO_PIXEL(Camera_Data); /* 从FIFO读出一个rgb565像素到Camera_Data变量 */
tupian[j]=Camera_Data;
LCD_WR_Data(Camera_Data);
}
}
}
..\..\Output\Template.axf: Error: L6406E: No space in execution regions with .ANY selector matching bsp_ov7725.o(.bss).
..\..\Output\Template.axf: Error: L6406E: No space in execution regions with .ANY selector matching startup_stm32f10x_hd.o(STACK).
..\..\Output\Template.axf: Error: L6406E: No space in execution regions with .ANY selector matching bsp_ov7725.o(.data).
..\..\Output\Template.axf: Error: L6406E: No space in execution regions with .ANY selector matching system_stm32f10x.o(.data).
..\..\Output\Template.axf: Error: L6406E: No space in execution regions with .ANY selector matching stm32f10x_rcc.o(.data).
..\..\Output\Template.axf: Error: L6407E: Sections of aggregate size 0x25cc4 bytes could not fit into .ANY selector(s).