summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-05-28 15:07:06 -0700
committerKeith Packard <keithp@keithp.com>2018-05-28 15:07:06 -0700
commiteb31a40b3499287e0a52324a9adc3728883ed957 (patch)
tree0fc8a7d101b9d7b050a48a125b4a60d2127a3d08 /src
parent29f9880f7b09bc135d34bf0dcb221bdede7726b3 (diff)
altos/telelco-v2.0: Add debug output for pad voltage display
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r--src/telelco-v2.0/ao_lco_v2.c1
1 files changed, 1 insertions, 0 deletions
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;