diff options
author | Damien George <damien.p.george@gmail.com> | 2017-06-14 14:47:53 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-06-14 14:47:53 +1000 |
commit | c064f0a36a69b7479e7b828b97fed40b60247188 (patch) | |
tree | 6da455488d452354a0ab382a2d6da748cd9cb2db /stmhal | |
parent | e374cfff80c37b96b03d4438e475e405b03e6d61 (diff) | |
download | micropython-c064f0a36a69b7479e7b828b97fed40b60247188.tar.gz micropython-c064f0a36a69b7479e7b828b97fed40b60247188.zip |
stmhal/mpconfigport.h: Remove config of PY_THREAD_GIL to use default.
The default for the GIL is to enable it if threading is enabled, and this
is the recommended way to use threading with the stmhal port.
Diffstat (limited to 'stmhal')
-rw-r--r-- | stmhal/mpconfigport.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/stmhal/mpconfigport.h b/stmhal/mpconfigport.h index ac3c1f2470..48588e9ae9 100644 --- a/stmhal/mpconfigport.h +++ b/stmhal/mpconfigport.h @@ -108,7 +108,6 @@ #endif #define MICROPY_PY_UERRNO (1) #define MICROPY_PY_THREAD (0) -#define MICROPY_PY_THREAD_GIL (0) // extended modules #define MICROPY_PY_UCTYPES (1) |