Other Parts Discussed in Thread: CCSTUDIO
Hi Ya'll!!!
I wasted my whole day try to figure out the way to connect to the CCS4 with C6713 DSK. I know how to connect C6713 DSK with CCS3.1 AND CCS3.3, But the problem is that, I've bought a new laptop and it has windows 7 on it, so I cannot run CCS3.1 on it. I'm in a real pickle now. I try to compile the following code that I used to run on my DSK by using CCS3.1 but it just won't work on CCS4.
#include "ledcfg.h"
#include "dsk6713.h"
#include "dsk6713_led.h"
void main(){
DSK6713_init();
DSK6713_LED_init();
while(1){
DSK6713_LED_on(0);
DSK6713_waitusec(1000000);
DSK6713_LED_off(0);
DSK6713_waitusec(1000000);
}
}
Somebody please help me on this thing, please provide me with some examples that works on CCS4 and can be loaded on C6713.
kind Regards,
Arsal