Open GoogleCodeExporter opened 8 years ago
Can you go into more detail on how to change the malloc.
Original comment by blandfo...@gmail.com
on 16 Apr 2013 at 9:21
Instead of x = malloc(1234); you could do something like this:
static char x[1234];
Original comment by marcelve...@gmail.com
on 17 Apr 2013 at 12:50
so (rxbuffer.buffer = (unsigned char*)malloc(BUFFER_SIZE*sizeof(unsigned
char));)
will become (static char rxbuffer.buffer[(BUFFER_SIZE*sizeof(unsigned char))];)
Original comment by blandfo...@gmail.com
on 17 Apr 2013 at 1:28
I did this
"static char rxbuffer.buffer(BUFFER_SIZE*sizeof(unsigned char));"
and I'm getting this error
"error: expected initializer before '.' token"
Original comment by blandfo...@gmail.com
on 20 Apr 2013 at 11:13
Original issue reported on code.google.com by
marcelve...@gmail.com
on 11 Oct 2012 at 2:55