I1620: Fix PTP CPS and add register descriptions

This commit is contained in:
Mark Pizzolato 2017-06-20 05:30:18 -07:00
parent 5d50bfdfdc
commit 99798ec547

View file

@ -78,10 +78,10 @@ UNIT ptr_unit = {
}; };
REG ptr_reg[] = { REG ptr_reg[] = {
{ FLDATA (BIN, ptr_mode, 0) }, { FLDATAD (BIN, ptr_mode, 0, "binary mode flag") },
{ DRDATA (POS, ptr_unit.pos, T_ADDR_W), PV_LEFT }, { DRDATAD (POS, ptr_unit.pos, T_ADDR_W, "position in the input file"), PV_LEFT },
{ DRDATA (TIME, ptr_unit.wait, 24), PV_LEFT }, { DRDATAD (TIME, ptr_unit.wait, 24, "reader character delay"), PV_LEFT },
{ DRDATA (CPS, ptr_unit.DEFIO_CPS, 24), PV_LEFT }, { DRDATAD (CPS, ptr_unit.DEFIO_CPS, 24, "Character Input Rate"), PV_LEFT },
{ NULL } { NULL }
}; };
@ -105,10 +105,10 @@ UNIT ptp_unit = {
}; };
REG ptp_reg[] = { REG ptp_reg[] = {
{ FLDATA (BIN, ptp_mode, 0) }, { FLDATAD (BIN, ptp_mode, 0, "binary mode flag") },
{ DRDATA (POS, ptp_unit.pos, T_ADDR_W), PV_LEFT }, { DRDATAD (POS, ptp_unit.pos, T_ADDR_W, "position in the output file"), PV_LEFT },
{ DRDATA (TIME, ptp_unit.wait, 24), PV_LEFT }, { DRDATAD (TIME, ptp_unit.wait, 24, "punch character delay"), PV_LEFT },
{ DRDATA (CPS, ptr_unit.DEFIO_CPS, 24), PV_LEFT }, { DRDATAD (CPS, ptp_unit.DEFIO_CPS, 24, "Character output rate"), PV_LEFT },
{ NULL } { NULL }
}; };