Search found 19 matches

by braiins
Tue Jun 13, 2017 6:43 am
Forum: Programs, Libraries and Tools
Topic: PILA - Disrupting the buildsystem using SCons
Replies: 1
Views: 4073

PILA - Disrupting the buildsystem using SCons

Hello all micropython fans, I have recently given a talk at PyCon CZ 2017 about a small fun project that runs micropython as one of freertos tasks. Except for the use case, that itself is interesting but not new, I would like to know everyone's opinions on the build/configuration solution. The talk ...
by braiins
Mon Mar 14, 2016 8:36 am
Forum: Development of MicroPython
Topic: qstrdefs generator
Replies: 11
Views: 9566

Re: qstrdefs generator

A proof-of-concept is now available:

https://github.com/micropython/micropython/pull/1899

Looking forward to any comments within the PR ;-)

Jan
by braiins
Thu Mar 10, 2016 4:08 pm
Forum: Development of MicroPython
Topic: qstrdefs generator
Replies: 11
Views: 9566

Re: qstrdefs generator

The automated qstring extraction actually reveals interesting things -> some strings are not being used but the qstrdefsport.h doesn't contain proper ifdefs around it, while the relevant part of the code that uses the qstring has the ifdef. Anyway, the topic is not as trivial and I know understand a...
by braiins
Tue Mar 08, 2016 8:49 pm
Forum: Development of MicroPython
Topic: qstrdefs generator
Replies: 11
Views: 9566

Re: qstrdefs generator

I have fixed the script to handle nested ifdefs properly: https://gist.github.com/honzik666/23def819ee6285eebc97 Let me know if anything is still not in line...

The build system changes are minimal, I will make some tests tomorrow and post it to github tomorrow. I am curious if Dave likes it ;-)

Jan
by braiins
Tue Mar 08, 2016 1:43 pm
Forum: Development of MicroPython
Topic: qstrdefs generator
Replies: 11
Views: 9566

Re: qstrdefs generator

I am drafting a prototype - patch into the build system
by braiins
Tue Mar 08, 2016 10:33 am
Forum: Development of MicroPython
Topic: qstrdefs generator
Replies: 11
Views: 9566

Re: qstrdefs generator

The b) approach is straightfully usable including the ifdef hell. I like it as it could be possible to integrate it into the build process. I have looked into the build system a bit and it seems that it is not as easy since each .o compilation step has dependency generation as a side effect. A trivi...
by braiins
Mon Mar 07, 2016 7:25 am
Forum: Programs, Libraries and Tools
Topic: extmod generator
Replies: 9
Views: 9533

Re: extmod generator

qstr generation is something that should definitely be looked into. I believe the point is to not bloat sources with #ifdefs or even better to ban the use of ifdefs except for header file guards ;-) Stick is in much better position while generating qstr definitions since with python reflection the g...
by braiins
Thu Mar 03, 2016 9:15 am
Forum: Development of MicroPython
Topic: gc.collect() triggers finalizer method too early?m_new_obj_with_finaliser()
Replies: 12
Views: 9982

Re: gc.collect() triggers finalizer method too early?m_new_obj_with_finaliser()

Let's see what happens in the long run. The notes are available here: https://github.com/braiins/micropython/ ... ting-Notes for the time being.

Any comments on misinterpretation/improvements are welcome.

Best regards,

Jan
by braiins
Mon Feb 29, 2016 8:27 pm
Forum: Development of MicroPython
Topic: root pointers and how to make them more flexible?
Replies: 3
Views: 3986

Re: root pointers and how to make them more flexible?

The way the gc works is that anything that is "referenced" (i.e. has a pointer to it) is considered to be in use. So the gc looks through the stack (since registers and local variables on the stack can contain pointers to nwely allocated objects) and as a performance optimization, rather than looki...