(1) Create a Table buffer , the szie is 96 Bytes.
(2) Why is used x4 buffer size at first time (SARAM or DARAM)?
(3) We are using many Table buffer (e.g. image) , Could you provide any suggestion for our coding?
example code : c55_csl_3.03
EVM : TMS320C5515
unsigned char g_TABLE_XX[] = {nnnnn}; // 16*6 Bytes
Uint16 abc1,abc2;
abc1=TABLE_XX[0];
abc2=TABLE_XX[1];
|
DARAM Used |
SARAM Used |
Not use Global g_TABLE_XX |
00003df4 |
0000460b |
1th use Global g_TABLE_XX (abc1) |
00003f7a (390Bytes) |
00004612 (7 Bytes) |
2th use Global g_TABLE_XX (abc2) |
00003f7a |
00004619 (7 Bytes)
|