Hi all,
I am using the serial loopback feature (connecting UART4 to C28x SCI) to bootload the C28x with an application using its SCI boot mode. Since there are no external connections, I wonder whether it is safe to not give the C28x ownership of GPIOs 35-36 in this case, allthough the SCI boot mode code assumes they are available. In other words, can I safely remove the following two lines in driverlib/ipc_util.c:
HWREG(GPIO_PORTF_BASE + GPIO_O_PUR) |= (GPIO_PIN_3 | GPIO_PIN_4);
HWREG(GPIO_PORTF_BASE + GPIO_O_CSEL) |= (GPIO_PIN_3 | GPIO_PIN_4);
See lines 220-221 where the case CBROM_MTOC_BOOTMODE_BOOT_FROM_SCI is handled.
It works fine and even seems to be more correct, that is, maybe these lines should be removed in the next release of the drivelib. But maybe I am overlooking something?
Thank you,
Christian