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.

SK-TDA4VM: How to toggle wakeup GPIO

Part Number: SK-TDA4VM
Other Parts Discussed in Thread: TDA4VM

Tool/software:

Hi Ti,

We are trying to access wakeup GPIO from MCU. For that I referred forum, they have mentioned that LED_blink as an example, but when i try to run, i can not able to blink LED. It get locked into the while loop because wkup_gpio_intr_triggered = 0.

By referring the user guide, I simple toggle by following steps

GPIO_write(MAIN_GPIO_PIN_NUM, GPIO_PIN_VAL_HIGH);
AppDelay(DELAY_VALUE); GPIO_write(MAIN_GPIO_PIN_NUM, GPIO_PIN_VAL_LOW);
AppDelay(DELAY_VALUE);

but no response from GPIO.

Could you support how to toggle GPIO?