Search found 41 matches

by Markus Gritsch
Tue Nov 04, 2014 6:52 pm
Forum: Development of MicroPython
Topic: MIPS port?
Replies: 4
Views: 8395

Re: MIPS port?

Is there a particular reason for dsPIC33? Wouldn't a PIC32MX (even available in DIP package) or the newer PIC32ZX be better suited?
by Markus Gritsch
Mon Nov 03, 2014 12:26 pm
Forum: General Discussion and Questions
Topic: Random Enumeration Behaviour
Replies: 4
Views: 4906

Re: Random Enumeration Behaviour

Markus Gritsch wrote:I filed a bug report: https://github.com/micropython/micropython/issues/687
This issue seems to be fixed in recent Micro Python versions.
by Markus Gritsch
Wed Jul 23, 2014 7:35 pm
Forum: MicroPython pyboard
Topic: HID Mouse issues
Replies: 2
Views: 4268

Re: HID Mouse issues

by Markus Gritsch
Mon Jul 07, 2014 2:47 pm
Forum: General Discussion and Questions
Topic: Working WS2812 LED Example
Replies: 12
Views: 18939

Re: Working WS2812 LED Example

Just for completeness, here is the code without the big string concatenation. However, it still runs 2.5 times faster with the explicit call to gc.collect() in place. # MicroPython example for controlling one WS2812 LED. # Method similar to http://www.espruino.com/WS2811 import pyb from pyb import S...
by Markus Gritsch
Sun Jul 06, 2014 7:08 am
Forum: Hardware Projects
Topic: TinderBot
Replies: 3
Views: 5659

Re: TinderBot

:) nice.
by Markus Gritsch
Fri Jul 04, 2014 11:12 am
Forum: Hardware Projects
Topic: LCD skin Graphic-Demo
Replies: 4
Views: 11303

Re: LCD skin Graphic-Demo

In the video there seems to be an irregular refresh rate. Maybe you can try adding

Code: Select all

gc.collect()
in the loop somewhere. It solved my issue with random garbage collector related delays (http://forum.micropython.org/viewtopic. ... t=108#p580)

Cheers,
Markus
by Markus Gritsch
Thu Jun 26, 2014 8:29 am
Forum: General Discussion and Questions
Topic: Irregular processing power
Replies: 21
Views: 24178

Re: Irregular processing power

@fma: Are you going to share your modified code or not?
by Markus Gritsch
Thu Jun 19, 2014 8:29 pm
Forum: General Discussion and Questions
Topic: Irregular processing power
Replies: 21
Views: 24178

Re: Irregular processing power

fma wrote:I changed Markus's code to use 2 bytearrays, and I can drive 121 leds without memory error. It also works much faster (but I can't reach 60fps with 121 leds!).
Please attach the code.
by Markus Gritsch
Wed Jun 18, 2014 7:13 pm
Forum: General Discussion and Questions
Topic: Interesting issue with different sdcards
Replies: 17
Views: 17739

Re: Interesting issue with different sdcards

@dhylands: If you like, you can try the attached firmware.dfu, where I made the following experimental changes: bash-3.2$ diff -u main_orig.c main.c --- main_orig.c 2014-06-18 21:01:58.089046200 +0200 +++ main.c 2014-06-18 21:02:42.687597100 +0200 @@ -420,8 +420,9 @@ #if MICROPY_HW_HAS_SDCARD // if ...
by Markus Gritsch
Tue Jun 17, 2014 6:55 pm
Forum: MicroPython pyboard
Topic: EAGLE files of PYBv1.0 on github?
Replies: 6
Views: 7309

EAGLE files of PYBv1.0 on github?

Hi,

will the PYBv1.0 EAGLE files be uploaded to the pyboard repository on github?

Cheers,
Markus