Merge pull request #8847 from jepler/rgmatrix-fix-buffer-size
Allow the framebuffer size of an rgbmatrix to be >65535 bytes
This commit is contained in:
commit
23c92bdb54
1 changed files with 2 additions and 1 deletions
|
|
@ -38,7 +38,8 @@ typedef struct {
|
|||
supervisor_allocation *allocation;
|
||||
Protomatter_core protomatter;
|
||||
void *timer;
|
||||
uint16_t bufsize, width;
|
||||
uint32_t bufsize;
|
||||
uint16_t width;
|
||||
uint8_t rgb_pins[30];
|
||||
uint8_t addr_pins[10];
|
||||
uint8_t clock_pin, latch_pin, oe_pin;
|
||||
|
|
|
|||
Loading…
Reference in a new issue