Search found 6 matches

by robdobson
Tue Jun 07, 2022 3:57 pm
Forum: General Discussion and Questions
Topic: Callback from a different FreeRTOS task
Replies: 4
Views: 2552

Callback from a different FreeRTOS task

I'm working on an ESP32 project in which FreeRTOS is used. I have a communications system which isn't integrated into Micropython and this generates messages on a different task than then one Micropython runs on. I am trying to handle an inbound message (which is asynchronous to Micropython operatio...
by robdobson
Thu Nov 12, 2020 1:19 pm
Forum: General Discussion and Questions
Topic: How to build micropython with PlatformIO and ESP-IDF?
Replies: 6
Views: 6809

Re: How to build micropython with PlatformIO and ESP-IDF?

I've successfully embedded MicroPython into an existing ESP-IDF project, here's a blog post about how I did it ... https://robdobson.com/2020/11/embedding-micropython-on-esp32/ ... I got the idea from another thread on this forum but I can't find it anymore to reference the person who suggested it -...
by robdobson
Thu Nov 12, 2020 1:14 pm
Forum: General Discussion and Questions
Topic: Embedding Micropython in a standalone C application (micropython/examples/embedding )
Replies: 12
Views: 7177

Re: Embedding Micropython in a standalone C application (micropython/examples/embedding )

I know this is an old thread but I thought I'd mention that I've posted an article on embedding Micropython into an existing ESP32 IDF project in case anyone is interested. https://robdobson.com/2020/11/embedding ... -on-esp32/
by robdobson
Mon Sep 28, 2020 2:03 pm
Forum: General Discussion and Questions
Topic: C module class with properties and methods
Replies: 2
Views: 1632

Re: C module class with properties and methods

Cool, I'll take a look, thanks
by robdobson
Mon Sep 28, 2020 9:44 am
Forum: General Discussion and Questions
Topic: C module class with properties and methods
Replies: 2
Views: 1632

C module class with properties and methods

I've been following this document: https://readthedocs.org/projects/micropython-usermod/downloads/pdf/latest/ In the Classes section under Properties (around page 40) there is an example which adds a .attr = to the type definition of a class (propertyclass_type in the example). I have tried to exten...