Is there any documentation regarding the current sink capability on these pins (IO40/41/42)?
I made a prototype board and I am switching some SSR's through 430 Ohm resistors, and the SSR's connected to these pins do not switch.
If I set the pins low, then I still have 2.9V on them.
No issue on other pins.
I have so far not found anything in the manual regarding this.
I am configuring all the pins like this:
Code: Select all
for (int i = 0; i < SSR_COUNT; i++) {
gpio_set_direction(SSR[i], GPIO_MODE_OUTPUT);
gpio_set_drive_capability(SSR[i], GPIO_DRIVE_CAP_MAX);
gpio_set_level(SSR[i], 0);
}