Search found 735 matches

by stijn
Thu Oct 26, 2017 8:27 am
Forum: Development of MicroPython
Topic: [SOLVED]what is sequence of calls to .make_new
Replies: 1
Views: 1650

Re: what is sequence of calls to .make_new

pyb.LED has different implementations depending on the port so that varies a bit but in general the call stack up to the call of the function pointed to by make_new (i.e. call to self->make_new(self, n_args, n_kw, args) in objtype.c) is the same and looks like this when creating a new obj from the R...
by stijn
Mon Oct 23, 2017 7:21 am
Forum: General Discussion and Questions
Topic: where have the edit icons gone
Replies: 2
Views: 2055

Re: where have the edit icons gone

You already posted this last week in viewtopic.php?f=2&t=3910 ?
by stijn
Mon Oct 16, 2017 7:57 am
Forum: General Discussion and Questions
Topic: This forum's behaviour has changed for the worse.
Replies: 9
Views: 7869

Re: This forum's behaviour has changed for the worse.

Not really much wrong with phpBB but the change they made now is horrid. (I'm not 100% sure it is just phpBB though, or rather the skin/style used). Anyway I'm fairly sure we are not the only ones complaining though so I guess it will be gone again in the next update.
by stijn
Thu Oct 12, 2017 7:51 am
Forum: Development of MicroPython
Topic: Looking for help using MP in Windows with QT
Replies: 20
Views: 13807

Re: Looking for help using MP in Windows with QT

That's the idea, yes. Though it has not been tested thoroughly.

Btw if you have problems again, it's going to be much easier to get a proper answer to a question if you provide a way to reproduce your problem. Else it might come down to guesswork.
by stijn
Sun Oct 08, 2017 7:42 am
Forum: General Discussion and Questions
Topic: Access shared folder from micropython
Replies: 3
Views: 3251

Re: Access shared folder from micropython

The open source solutions both for accessing and producing SMB-compatible network locations already exist. So at least the reverse engineering part has been done where needed. The real problem is 'just' the porting of that that code to whatever microcontroller. Which might simply be undoable (infini...
by stijn
Fri Oct 06, 2017 9:24 am
Forum: Development of MicroPython
Topic: SUGGESTION - move the QUESTIONS to Stackoverflow
Replies: 5
Views: 4455

Re: SUGGESTION - move the QUESTIONS to Stackoverflow

Not really a bad idea, but I think the userbase is just too small to really make this efficient and effective on SO. We are all hobbyists and volunteers here, we are not getting paid for answering the questions, That's largely irrelevant given this is equally true for 99.9% or more of the people ans...
by stijn
Wed Oct 04, 2017 6:59 pm
Forum: Development of MicroPython
Topic: Preliminary pyboard port to NXP MCUs ---- how to add to micropython repository
Replies: 6
Views: 5363

Re: Preliminary pyboard port to NXP MCUs ---- how to add to micropython repository

Yes but after you push through with the initial learning curve it's a joy to work with. Well and after that there's still more learning curve (reflog etc.) but I even never went there as I never seem to need those features.
by stijn
Wed Oct 04, 2017 6:53 pm
Forum: Development of MicroPython
Topic: integrating micropython into a cooperative multitasking OS
Replies: 3
Views: 2972

Re: integrating micropython into a cooperative multitasking OS

Yes you might be right, I didn't check in detail how many times the hooks get called, sorry.
by stijn
Wed Oct 04, 2017 10:41 am
Forum: Development of MicroPython
Topic: integrating micropython into a cooperative multitasking OS
Replies: 3
Views: 2972

Re: integrating micropython into a cooperative multitasking OS

Can't comment on any implications, but have you seen the MICROPY_VM_HOOK_*** macros? That might be an easier way to extend the vm instead of modifying DISPATH, it's meant for that, though I'm not sure if it's usable for you.
by stijn
Wed Oct 04, 2017 10:36 am
Forum: Development of MicroPython
Topic: Preliminary pyboard port to NXP MCUs ---- how to add to micropython repository
Replies: 6
Views: 5363

Re: Preliminary pyboard port to NXP MCUs ---- how to add to micropython repository

This might not be very easy becasue there's no link to github anymore because you just copied all files, then started working in Bitbucket. To make things worse this was before the recent change where all ports are moved to the port directory. But it should be doable: - figure out from which commit ...