HUB75-Panel 64x64 P3, Chip ICND2038S, Teensy 4.0, SmartLED Shield V5

hi,

i have a Matrix 64x64 P3 (HUB75-Panel) with Chip ICND2038S on it.
I want to use it with Teensy 4.0 SmartLED Shield V5.
but I have found that the driver software for that Chip
ICND2038S does not exist on SmartMatrix.

Has anyone a solution for me?
I am not good enough to develop a driver. :disappointed:

kindly regards

strunx

alternatively question: exists a driver software for the chip SM16208SJ
on SmartMatrix with Teensy 4.0 SmartLED Shield V5?

The SM16208 has absolutely nothing specific in it, almost any library for HUB75 panels can works with it

i found the solution with that Chip ICND2038S:

define in smartmatrix-code:

const uint16_t kMatrixWidth  = 64;   
const uint16_t kMatrixHeight = 64;
const uint8_t kRefreshDepth = 48;
const uint8_t kDmaBufferRows = 8;    
const uint8_t kPanelType = SMARTMATRIX_HUB75_64ROW_MOD32SCAN; 
const uint32_t kMatrixOptions = (SMARTMATRIX_OPTIONS_FM6126A_RESET_AT_START); 

and it works.