Resolve validation error for length

This commit is contained in:
Will Tatam
2024-02-25 12:07:02 +00:00
parent e3e9ff72fa
commit bf1a91a501
3 changed files with 503 additions and 501 deletions

View File

@@ -495,7 +495,7 @@ BusHub75Matrix::BusHub75Matrix(BusConfig &bc) : Bus(bc.type, bc.start, bc.autoWh
mxconfig.chain_length = max((u_int8_t) 1, min(bc.pins[0], (u_int8_t) 4)); // prevent bad data preventing boot due to low memory
if(mxconfig.mx_width >= 64 && (bc.pins[0] > 1)) {
USER_PRINT("WARNING, only single panel can be used of 64x64 due to memory")
USER_PRINT("WARNING, only single panel can be used of 64 pixel boards due to memory")
mxconfig.chain_length = 1;
}