freetronics / DMD

Arduino library to support the Freetronics Dot Matrix Display
www.freetronics.com/dmd
142 stars 145 forks source link

Library is preventing the use of long arrays #19

Open mmzeynalli opened 4 years ago

mmzeynalli commented 4 years ago

Recently I do simple project where I send pixel data from RaspberryPi via UART. In this project, I created array of ~1000 length (screens are 3x5, it makes around 960 bytes of data). First I created it dynamically via calloc, and memory allocation failed. Changing array to static did not change anything. Then, I removed array and tried to increase Arduino buffer size instead. However, even though I have enough buffer size, my code even wont print something to the Serial (and I am not talking about RPi - Arduino yet).