pigpio
pigpio copied to clipboard
probably error
Wandering through the pigpio.c
code, I accidentally saw line 12059. gpioNotify[i].state = PI_NOTIFY_OPENED;
Isn't this an error like issue #402?
Thanks.
Yes, that is an error. It should be
gpioNotify[slot].state = PI_NOTIFY_OPENED;
Fortunately i normally equals slot (as bufSize is normally 0).
@guymcswain Do you want me to make this change? In develop?
Yes, make the change in develop. Thanks.