GPIO_setMasterCore(DEVICE_GPIO_PIN_LED2, GPIO_CORE_CM); CPU1 updates the LED1 pin and CM updates the LED2 using the GPIO_writePin or GPIO_togglePin functions. Running the example : Build both the CCS projects and load the .outs in CPU1 and CM cores. Run CPU1 core followed by CM...
(SRN0,3) static unsigned long i = 0; unsigned long sec; char s[50]; IO_vTogglePin(IO_P1_15); sec = i*((1<<24)/75000000.); i++; sprintf(s, "TriBoard running since: " "%02ldh:%02ldmin:%02ldsec\r", sec/3600, (sec%3600)/60, sec%60); ASC0_vWrite(s); // USER ...