Team my customer is trying to use the following lines of code in the TVP5150 driver to control the device “power down” and “reset”, but the pins do not change state, what could be the problem?
#define TVP5150_GPIO_RESET 24
#define TVP5150_GPIO_POWER_DOWN 23
gpio_direction_output(TVP5150_GPIO_POWER_DOWN, 0);
gpio_direction_output(TVP5150_GPIO_RESET, 0);
gpio_set_value(TVP5150_GPIO_POWER_DOWN, 0