Part Number: TMS320F28075
Other Parts Discussed in Thread: C2000WARE
Tool/software: TI C/C++ Compiler
I've used this code previously and in other projects that runs with the same processor, where it resets the processor as expected:
//Forces a reset:
EALLOW;
WdRegs.WDCR.all = 0x78; //Sets WDCHK != 1,0,1
EDIS;
But for some reason in my current application, it just skips over and doesn't reset. Is there something else that might be causing the processor to ignore this.