1
Messages
This section allows you to view all Messages made by this member. Note that you can only see Messages made in areas you currently have access to.
Messages - MarkusL
2
Project logs / Re: Controller Board for Adafruit's Large RGB Matrix Display
3
Project logs / Re: Controller Board for Adafruit's Large RGB Matrix Display
I'd also choose variant 3. Normally it's great to have a library configurable, for example changing the number of pixels. However, in this specific case, there are only two possible options: 16x32 and 32x32. To my knowledge no others exist. And if there were others, they'd have a completely different interface anyway.
Regarding variant 2: I don't think you can guarantee that the memory allocated with malloc() is in the DMAMEM area, so probably this variant is not optimal.
Variant 1: This is great for LED-strips, because users can have a lot of different sizes. However, the panel only comes in two sizes, so this is not really necessary.
4
Project logs / Re: Controller Board for Adafruit's Large RGB Matrix Display
In the meantime I have also implemented a 24bit version on the Teensy. So far without using DMA. The trick is to prepare correctly interleaved RGB-buffers in advance. Adding DMA should improve this further. The sourcecode is here: http://forums.adafruit.com/viewtopic.ph ... 54#p253154
5
Project logs / Re: Controller Board for Adafruit's Large RGB Matrix Display
6
Project logs / Re: Controller Board for Adafruit's Large RGB Matrix Display
I finished the Arduino version http://http://forums.adafruit.com/viewtopic.php?f=47&t=50115, it allows live streaming from the PC screen. The Teensy version will probably be much cooler, because of the better color depth.
7
Project logs / Re: Controller Board for Adafruit's Large RGB Matrix Display
Do you already have some code snippets of your library to share? I would love to test it.
8
Project logs / Re: Controller Board for Adafruit's Large RGB Matrix Display
9
Project logs / Re: Controller Board for Adafruit's Large RGB Matrix Display
My 32*32 panel is on its way, and I am really looking forward to trying your library.