You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have created a pull request for SPI.end. In the current setup, it tries to remove the dev-instance if it does NOT exist (which only happens if you have NOT called SPI.begin()).
if (! dev) {
delete dev;
}
As a result the dev-instance is never removed, memory released, when the instance was set
it should read :
if (dev) {
delete dev;
}
regards,
Paul
The text was updated successfully, but these errors were encountered:
I have created a pull request for SPI.end. In the current setup, it tries to remove the dev-instance if it does NOT exist (which only happens if you have NOT called SPI.begin()).
As a result the dev-instance is never removed, memory released, when the instance was set
it should read :
regards,
Paul
The text was updated successfully, but these errors were encountered: