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?