This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Can I still change the configuration after using sysconfig? For example, I initialize the GPIO port to output mode and modify it to input mode in the main program using the DL_GPIO_initDigitalInput() function
Hi,
You can use the driverlib functions outside of Sysconfig. I personally use them to reconfigure peripherals quite often (especially for timers). Other things like reconfiguring the ADC, UART, etc are quite common to do during application runtime.
In short you can change your GPIO from an output to an input during your application code.
Regards,
Luke