Hello
I want to set leds ON during u-boot and linux initialization.
In U-boot i called gpio_direction_output( 76, 0); in boeard.c : that is OK
But when linux launch itself, the led progammation is then not OK
I called also in am335x_evm_init() function :
gpio_direction_output(GPIO_TO_PIN(2, 12), 0);
gpio_free(GPIO_TO_PIN(2, 12));
But in my appliation i then can't open these GPIO using gpio_set from the following file :
The other IO are OK.
THe gpio_free function is not enough to be able to use the IO in an aplication using the gpio_set function ?
best regards