Part Number: TMS320F28375S
Hi,
I am working on a TMS320F28375S card. It is a custom built board with this microcontroller. I am using CCS 10.1.0.00010.
Problem: An insignificant (I think) change in the linker file is changing the behaviour of the software. I am using my software for the motor control. In the below settings, everything works fine.
.cinit : > FLASHB PAGE = 0, ALIGN(4)
.pinit : > FLASHB, PAGE = 0, ALIGN(4)
.text : >> FLASHB | FLASHC | FLASHD | FLASHE PAGE = 0, ALIGN(4)
But if I change it like below (FLASHB is removed from .text), motor phase currents are imbalanced with a significant value (around 40amps). I did that repeatedly, and it was pretty consistent. So I am sure it is doing something that I don't understand.
.cinit : > FLASHB PAGE = 0, ALIGN(4)
.pinit : > FLASHB, PAGE = 0, ALIGN(4)
.text : >> FLASHC | FLASHD | FLASHE PAGE = 0, ALIGN(4)
Could any one help on this please?
Thank you.
Gobind Singh