From 99798ec54795a5cae165b56014f0f72d315d4b6c Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Tue, 20 Jun 2017 05:30:18 -0700 Subject: [PATCH] I1620: Fix PTP CPS and add register descriptions --- I1620/i1620_pt.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/I1620/i1620_pt.c b/I1620/i1620_pt.c index 09dac0f3..442b40e1 100644 --- a/I1620/i1620_pt.c +++ b/I1620/i1620_pt.c @@ -78,10 +78,10 @@ UNIT ptr_unit = { }; REG ptr_reg[] = { - { FLDATA (BIN, ptr_mode, 0) }, - { DRDATA (POS, ptr_unit.pos, T_ADDR_W), PV_LEFT }, - { DRDATA (TIME, ptr_unit.wait, 24), PV_LEFT }, - { DRDATA (CPS, ptr_unit.DEFIO_CPS, 24), PV_LEFT }, + { FLDATAD (BIN, ptr_mode, 0, "binary mode flag") }, + { DRDATAD (POS, ptr_unit.pos, T_ADDR_W, "position in the input file"), PV_LEFT }, + { DRDATAD (TIME, ptr_unit.wait, 24, "reader character delay"), PV_LEFT }, + { DRDATAD (CPS, ptr_unit.DEFIO_CPS, 24, "Character Input Rate"), PV_LEFT }, { NULL } }; @@ -105,10 +105,10 @@ UNIT ptp_unit = { }; REG ptp_reg[] = { - { FLDATA (BIN, ptp_mode, 0) }, - { DRDATA (POS, ptp_unit.pos, T_ADDR_W), PV_LEFT }, - { DRDATA (TIME, ptp_unit.wait, 24), PV_LEFT }, - { DRDATA (CPS, ptr_unit.DEFIO_CPS, 24), PV_LEFT }, + { FLDATAD (BIN, ptp_mode, 0, "binary mode flag") }, + { DRDATAD (POS, ptp_unit.pos, T_ADDR_W, "position in the output file"), PV_LEFT }, + { DRDATAD (TIME, ptp_unit.wait, 24, "punch character delay"), PV_LEFT }, + { DRDATAD (CPS, ptp_unit.DEFIO_CPS, 24, "Character output rate"), PV_LEFT }, { NULL } };