I havent done more until now.
I need a shuttle board with 2 rotary encoders, and a TFT display.
I need a shuttle board with 2 rotary encoders, and a TFT display.
void copy_scroll(uint offs,uint bmp_offs, uchar mask_min)
{uchar* ram_ptr;uchar* dsp_ptr;uchar i, i2;
ram_ptr=&bitmap[0]+bmp_offs;dsp_ptr=display_ptr+offs;
for(i=0x80;i>mask_min;i>>=1)
{for(i2=1;i2<0x20;i2<<=1)
{if((*ram_ptr)&i2)*dsp_ptr|=i;else *dsp_ptr&=0xff-i;
dsp_ptr+=display_bytes_width;}
dsp_ptr=display_ptr+offs;ram_ptr++;}}