User Activity

HelloI got LCD 240x320 connected via SPI to my STM32f429. LCD interface is RGB565.I have created buffer uint8_t buffer[240*320*2]; so, 1st im filling buffer with red color: for (int i=0;i<240*320*2;i+=2){   buffer[i]=0xf8;   buffer[i+1]=0x00;   ...