| 87 | /* ************************************************************************* */ |
| 88 | |
| 89 | static int ars_clear_ctrl_pin(ROT *rot, unsigned char pin) |
| 90 | { |
| 91 | hamlib_port_t *pport = ROTPORT(rot); |
| 92 | struct ars_priv_data *priv = (struct ars_priv_data *)ROTSTATE(rot)->priv; |
| 93 | |
| 94 | priv->pp_control &= ~pin; |
| 95 | |
| 96 | return par_write_control(pport, priv->pp_control); |
| 97 | } |
| 98 | |
| 99 | static int ars_set_ctrl_pin(ROT *rot, unsigned char pin) |
| 100 | { |
no test coverage detected