From 4374b66ac8f334af743fab51c03d66ba54b774be Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Fri, 21 Jun 2024 16:36:57 -0400 Subject: [PATCH] KA10: Fixed number of columns on PiPanel display --- PDP10/ka10_pipanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDP10/ka10_pipanel.c b/PDP10/ka10_pipanel.c index 533843d..ecf618e 100644 --- a/PDP10/ka10_pipanel.c +++ b/PDP10/ka10_pipanel.c @@ -341,7 +341,7 @@ void *blink(void *ptr) } /* Columns */ - for (col = 0; col < 10; col++) { + for (col = 0; col < 18; col++) { gpio_set_fsel(cols[col], GPIO_FSEL_INPUT); gpio_set_pull(cols[col], PULL_UP); }