Micropython as ESP-IDF Component. #17626
-
Can we add micropython as a component in esp-idf project and run it inside a freertos task along with our application logic? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
MicroPython can be used as part of a bigger program using the embed port. https://github.com/micropython/micropython/tree/master/ports/embed It would be possible to create an esp-idf component around this. Which your link seems to be an example of. |
Beta Was this translation helpful? Give feedback.
MicroPython can be used as part of a bigger program using the embed port. https://github.com/micropython/micropython/tree/master/ports/embed
See the embedding examples in the repository. https://github.com/micropython/micropython/tree/master/examples/embedding
It would be possible to create an esp-idf component around this. Which your link seems to be an example of.