-
Notifications
You must be signed in to change notification settings - Fork 220
FFI support #230
Comments
It appears the And I'm assuming you mean this micropython-schedule library? |
Yes and yes. In my understanding, micropython-schedule is internally using functools for building function partials which depends on FFI functionality. |
Well, the functools in micropython/micropython-lib doesn't appear to need FFI. |
You're right, my bad. Below is the error I'm getting. It seems that the
|
The There's a built-in µPy |
@dpgeorge Why do we have a "pure" Python |
Good question! The history of the |
ffi is not supported on esp32. To get micropython-schedule working on the esp32 would require modifying it to not rely on ffi. |
Hi, I need FFI support in
ports/esp32
because I want to use themicropython-schedule
package. I tried to build commit 292816a but it seems that the FFI library, which is an external dependency forports/unix
is not linked inports/esp32
. Can you confirm if this is the case, and if it is if there is a plan to support it in the future?The text was updated successfully, but these errors were encountered: