Search found 13 matches

by pmp-p
Wed Sep 25, 2019 11:55 pm
Forum: Development of MicroPython
Topic: SWIG (or similar wrapping tool) support?
Replies: 15
Views: 14747

Re: SWIG (or similar wrapping tool) support?

Related: https://hackaday.com/2019/08/31/micropython-and-c-play-together-better/ Thanks, c2ffi is quite hard to follow accross clang versionning your alternative looks promising ! Related but for direct C++ integration this time https://github.com/pmp-p/panda3d-interrogator Despite the name closely...
by pmp-p
Tue Sep 24, 2019 1:15 pm
Forum: General Discussion and Questions
Topic: Does anybody know what is going on with micropython?
Replies: 24
Views: 14197

Re: Does anybody know what is going on with micropython?

> So maybe the willingness to personally resolve similar behaviour might be low at the moment. That is indeed a good element of response for primary topic. > with pfalcon we (this forum/micropyhon) has/had already a lot of trouble The few i've read though is consistent with IRC tech discussions and ...
by pmp-p
Tue Sep 24, 2019 11:23 am
Forum: General Discussion and Questions
Topic: Does anybody know what is going on with micropython?
Replies: 24
Views: 14197

Re: Does anybody know what is going on with micropython?

> Your social skills are quite low. Thank you for evaluating me on such short notice, but it's fair coming from you so i'll guess i'll spend more time coding my own than roaming on forum then. > The way you speak to others and about others and their work is unfriendly and arrogant. That's the proble...
by pmp-p
Tue Sep 24, 2019 8:46 am
Forum: General Discussion and Questions
Topic: Does anybody know what is going on with micropython?
Replies: 24
Views: 14197

Re: Does anybody know what is going on with micropython?

If you have a an issue with my (or anyone's) technical analysis, then please feel free to provide an alternative analysis or explanation. i think i just did, you had mistaken C-stack and Python stack and yes in embedded world it's an issue especially when dealing with wasm computing units where set...
by pmp-p
Mon Sep 23, 2019 8:07 pm
Forum: Development of MicroPython
Topic: compiling C modules into loadable shared objects
Replies: 33
Views: 19183

Re: compiling C modules into loadable shared objects

Sorry for not reading previous pages and watching video but just in case, you can load any module with FFI on unix port written in any compiled language and you can even import quite complex C++ classes as MicroPython objects proxies. using stock micropython + pfalcon tools + c2ffi on C header only ...
by pmp-p
Mon Sep 23, 2019 5:11 pm
Forum: General Discussion and Questions
Topic: Does anybody know what is going on with micropython?
Replies: 24
Views: 14197

Re: Does anybody know what is going on with micropython?

Same here! Maybe, but I think @stinos a.k.a. stijn knows the differences beetween the C stack and the Python stack and what a recursive C call imply for pre-emption in bytecode loop, do you too ? "technical clue" was a bad wording i meant "expertise technique" wich has nothing to do with a "clue" t...
by pmp-p
Fri Sep 20, 2019 12:42 pm
Forum: General Discussion and Questions
Topic: Does anybody know what is going on with micropython?
Replies: 24
Views: 14197

Re: Does anybody know what is going on with micropython?

the only truth here is that it might not work for you but it definitely works well for others. That's not how you build a community : such a reply is the best springboard for "not staying". Because if you don't care for my use case or my friend's ones . why should we care about those of yours and g...
by pmp-p
Fri Sep 20, 2019 2:19 am
Forum: General Discussion and Questions
Topic: Does anybody know what is going on with micropython?
Replies: 24
Views: 14197

Re: Does anybody know what is going on with micropython?

You've chosen a particularly difficult part of MicroPython -- the emscripten port is complicated First the fact that running the VM can run without any "referenced" board - pricey or not - in multiple ways should open eyes to some about the fact they are missing a train. But i did not choose anythi...
by pmp-p
Fri Sep 20, 2019 12:15 am
Forum: General Discussion and Questions
Topic: Does anybody know what is going on with micropython?
Replies: 24
Views: 14197

Re: Does anybody know what is going on with micropython?

jimmo wrote:
Tue Sep 10, 2019 2:35 am
It's important that we fix things that are dissuading new users from getting into MicroPython.
getting or staying.

but anyway i'm really asking myself *who* could fix anything anyway.
by pmp-p
Wed Sep 11, 2019 8:02 am
Forum: Development of MicroPython
Topic: "weak" reference to python object?
Replies: 4
Views: 4669

Re: "weak" reference to python object?

it seems finalizers support is implemented in VM. but no way provided to use them from Python. https://github.com/micropython/micropython/issues/245 related: __del__ special method not implemented for user-defined classes https://github.com/micropython/micropython/issues/1878https://github.com/micro...