From eb31a40b3499287e0a52324a9adc3728883ed957 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 28 May 2018 15:07:06 -0700 Subject: [PATCH] altos/telelco-v2.0: Add debug output for pad voltage display Signed-off-by: Keith Packard --- src/telelco-v2.0/ao_lco_v2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/telelco-v2.0/ao_lco_v2.c b/src/telelco-v2.0/ao_lco_v2.c index d78f54d2..371b978a 100644 --- a/src/telelco-v2.0/ao_lco_v2.c +++ b/src/telelco-v2.0/ao_lco_v2.c @@ -102,6 +102,7 @@ ao_lco_set_voltage(uint16_t decivolts) { uint8_t tens, ones, tenths; + PRINTD("voltage %d\n", decivolts); tenths = decivolts % 10; ones = (decivolts / 10) % 10; tens = (decivolts / 100) % 10; -- 2.30.2