| 272 | } |
| 273 | |
| 274 | static int ad_sdata(hamlib_port_t *port, int i) |
| 275 | { |
| 276 | int ret; |
| 277 | |
| 278 | ret = ser_set_rts(port, i); |
| 279 | ad_delay(AD_DELAY); |
| 280 | |
| 281 | if (ret != RIG_OK) |
| 282 | rig_debug(RIG_DEBUG_ERR, "%s: unable to set statusbits\n", |
| 283 | __func__); |
| 284 | |
| 285 | return ret; |
| 286 | } |
| 287 | |
| 288 | static int ad_sclk(const hamlib_port_t *port, int i) |
| 289 | { |
no test coverage detected