| 97 | } |
| 98 | |
| 99 | static int ars_set_ctrl_pin(ROT *rot, unsigned char pin) |
| 100 | { |
| 101 | hamlib_port_t *pport = ROTPORT(rot); |
| 102 | struct ars_priv_data *priv = (struct ars_priv_data *)ROTSTATE(rot)->priv; |
| 103 | |
| 104 | priv->pp_control |= pin; |
| 105 | |
| 106 | return par_write_control(pport, priv->pp_control); |
| 107 | } |
| 108 | |
| 109 | static int ars_clear_data_pin(ROT *rot, unsigned char pin) |
| 110 | { |
no test coverage detected