related source:
uint8_t test_data[1021];
void create_test_data(void){
int x,y;
for (y=0;y<25;y++){
for (x=0;x<78;x++){
test_data[y*80+x] = '0' + (x % 10);
}
test_data[y*80+78] = '\n';
test_data[y*80+79] = '\r';
}
}
in create_test_data function, array test_data must has 25*80=2000 Bytes ,but
there only has 1021 Bytes.
Original issue reported on code.google.com by wmy...@126.com on 27 Nov 2013 at 7:45
Original issue reported on code.google.com by
wmy...@126.com
on 27 Nov 2013 at 7:45