| 294 | } |
| 295 | |
| 296 | static void ad_bit(hamlib_port_t *port, unsigned char bit) |
| 297 | { |
| 298 | bit &= DATA; |
| 299 | |
| 300 | par_write_data(port, bit); |
| 301 | ad_delay(1); |
| 302 | |
| 303 | par_write_data(port, bit | CLOCK); |
| 304 | ad_delay(1); |
| 305 | |
| 306 | par_write_data(port, bit); |
| 307 | ad_delay(1); |
| 308 | } |
| 309 | |
| 310 | static void ad_write(hamlib_port_t *port, unsigned long word, |
| 311 | unsigned char control) |
no test coverage detected