Other Parts Discussed in Thread: CONTROLSUITE
Hello, Engineers.
I buy ControlCard package. I spend 3 days to run board and enter to debug mode. :)
It seemed that CCS can not work with correct emulator if connect both at same time (ISO JTAG (XDS 100 V2) and base USB-B cable (XDS100V1)). Then i use 5V wall adapter. Today I found this forum and migrate to microUSB+miniUSB without XDS100 V1 board (J8 plug - I also found today :)).
I think that should note on TI Concerto Experimenter kit website, that XDS100 V1 board is not usefull for program Concerto ControlCard.
I have one (yet) problem:
"F28M35x-FRM-EX-UG.pdf" page 28 see the "cpu_timers" example. I Import project, build, run, and.... LED is not blink. Interrupt appears, but GpioG1DataRegs.GPCSET.bit.GPIO70 = 1 code no effect.
interrupt void cpu_timer0_isr(void)
{
CpuTimer0.InterruptCount++;
//Toggle pin 70 for visual confirmation of timer operation
if(GpioG1DataRegs.GPCDAT.bit.GPIO70 == 0) {
GpioG1DataRegs.GPCSET.bit.GPIO70 = 1;
Test = GpioG1DataRegs.GPCDAT.bit.GPIO70; <------------- THIS
"Test" variable equal zero all time. LED NOT BLINK!!!
}else{
GpioG1DataRegs.GPCCLEAR.bit.GPIO70 = 1;
}
// Acknowledge this interrupt to receive more interrupts from group 1
PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
}
Sorry if it nooby question, but I have no any experience in TI dsp or ARM early.
First experiense = so big rake :) What I do wrong?
Best regards, Nastovjak Artem.