Help with 32x64 Display

I recently bought some displays and want to get them running with Teensy 4.0 and SmartLED shield.

I’m using Adafruit_Gfx example with these settings

const uint16_t kMatrixWidth = 64;
const uint16_t kMatrixHeight = 32;
const uint8_t kRefreshDepth = 36;
const uint8_t kDmaBufferRows = 4;
const uint8_t kPanelType = 1;
const uint32_t kMatrixOptions = (SM_HUB75_OPTIONS_NONE);

My problem is that the first 8 rows looks good. Rows 9-16 and 17 to 24 are kinda exchanged. And the bottom lines are okay aswell

This would be the picture edited with gimp

kPanelType Needs to match your panel. Use SM_PANELTYPE_HUB75_32ROW_MOD16SCAN

Hey there,

I used this setting and it didnt really fit (it showed dots on other line aswell)

The closest was just with SM_PANELTYPE_HUB75_16ROW_MOD8SCAN (the panel is also labeled with (8s))

I’m currently trying out to setup a MatrixPanelMaps.cpp

I got it working using type SM_PANELTYPE_HUB75_32ROW_64COL_MOD8SCAN

thanks for your help