Search found 74 matches

by nelfata
Sat Feb 14, 2015 4:42 pm
Forum: Development of MicroPython
Topic: Building MP as a static library
Replies: 10
Views: 13033

Re: Building MP as a static library

Ok will give it a try.
Any minimums to set initially?
by nelfata
Sat Feb 14, 2015 4:23 am
Forum: Development of MicroPython
Topic: Building MP as a static library
Replies: 10
Views: 13033

Re: Building MP as a static library

Hi again, in order to use the MPY as a library, I would like to know how to use the stack and heap and what to set them to. Taking some example from the minimal port there is a heap variable being set and passed to gc_init(). With stmhal mp_stack_set_limit() is used to set the stack limit. I intend ...
by nelfata
Sat Jan 10, 2015 8:27 am
Forum: Development of MicroPython
Topic: Micro Python development wish list
Replies: 52
Views: 47351

Re: Micro Python development wish list

1. I currently use the internal flash to store configuration and calibration data. Now the data is being stored in a file and that is 1 to 2K in size, so the file system capacity could be reduced as you suggest. 2. It is close to what you describe. I will try to wrap something up and send you to you...
by nelfata
Thu Jan 08, 2015 10:20 am
Forum: Development of MicroPython
Topic: Micro Python development wish list
Replies: 52
Views: 47351

Re: Micro Python development wish list

Thank you Damien for the follow up. As I mentioned earlier, the environment you and your team have provided so far has proven to be an excellent platform to be used for prototyping and even to be used for a real application. The main issues that I have found while developing my application (now rela...
by nelfata
Wed Jan 07, 2015 8:47 pm
Forum: Development of MicroPython
Topic: Micro Python development wish list
Replies: 52
Views: 47351

Re: Micro Python development wish list

I would like to emphasize on the importance of eliminating heap fragmentation as Damien mentioned at the beginning of this post. IMHO, this issue should be addressed as soon as possible as it is critical in running any serious application (critical or not). I was starting to initially develop an app...
by nelfata
Mon Dec 01, 2014 5:53 pm
Forum: General Discussion and Questions
Topic: STM Registers Access
Replies: 1
Views: 2253

STM Registers Access

Hi,
can someone provide some examples to manipulate the STM registers (with import stm)?

I would like to control the WDG and some examples would help. Thanks.
by nelfata
Tue Nov 25, 2014 1:04 am
Forum: Development of MicroPython
Topic: Supporting zero-copy operations in MicroPython
Replies: 8
Views: 9999

Re: Supporting zero-copy operations in MicroPython

Hi, I am interested to hear if there is any progress on that front. I am running into major memory issues trying to read sockets into blocks and manipulating the data. So far my only option is to reimplement the code in C. If someone has done any work with dealing with buffer allocations on fixed si...
by nelfata
Thu Nov 20, 2014 1:12 am
Forum: General Discussion and Questions
Topic: CC3100-Boost demo board
Replies: 4
Views: 6411

Re: CC3100-Boost demo board

Bryan,
thanks for taking care of this on my behalf. I hope other developers would find this useful and provide some feedback.
I want also to mention that TI requires that the .update() function to be called periodically, so that the underlying handlers can respond properly to events.
by nelfata
Tue Nov 18, 2014 3:47 am
Forum: General Discussion and Questions
Topic: Unstable SD Card issues
Replies: 0
Views: 2410

Unstable SD Card issues

I am having some unstable and very unusual SD Card access issues from Windows 7 (running in VMWARE on a MAC host). I used to be update scripts from W7 onto the SD Card no problem, and rarely hit any issues. Lately (I guess a few weeks ago after some MP firmware updates), I ran into issues updating. ...
by nelfata
Sat Nov 15, 2014 8:40 pm
Forum: Development of MicroPython
Topic: Array module does not support float
Replies: 2
Views: 3383

Array module does not support float

Hi,
the array module does not support float on the STMHAL platform even though the code ./py/binary.c had some partial support.
just FYI.