Tool/software:
Hi Team,
we want to use the TMC129 EPI interface connect to external SRAM CY62147, the circuit is same as the circuit in the TI TM4C129 manual. below is the screenshot. my questions are
1. if my variable type are uint8_t, uint16_t or uint32_t, and I put the variable into the external SRAM chip CY62147, when I read/write the variable, can I just use simple C code like below, do I need add some delay or other operation? what is the speed of the read/write access?
uint8_t variable=0x12;
uint16_t variable=0x1234;
uint32_t variable=0x12345678;
2. do I have to assign uint16_t and uint32_t variable at even start address?
3. if I am using RTOS, can I put RTOS heap memory into the external SRAM chip?
4. can I use the external SRAM same as micro's internal RAM? is there any consideration need to be note? thanks.
Best
Gu