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:
Dan Halbert 2024-01-27 13:18:07 -05:00 committed by GitHub
commit 23c92bdb54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;