Hi ,
I am using ChanFat FS with code example from Martin Thomas.
1) There is an char array declared as
1 | BYTE Buff[16384] __attribute__ ((aligned (4))) ; /* Working buffer */.
|
Is there any reason to align this array to a divisible by 4 address ?
For example
1 | char linebuf[120]; /* Console input buffer */
|
does not use the aligned attribute.
2)If someone can say whats the smallest ARM7/Cortex they have shoehorned
this FAT system it would help me.
Buff[16384] has been conservatively sized ?It does takes a lot of RAM.
Thomas