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
The new python 3.14 free threading mode allows running code without the GIL (Global Interpreter Lock). spidev should declare that it can run safely without the GIL. There is a good guide at https://py-free-threading.github.io/ on how to do this.
The new python 3.14 free threading mode allows running code without the GIL (Global Interpreter Lock).
spidevshould declare that it can run safely without the GIL. There is a good guide at https://py-free-threading.github.io/ on how to do this.