1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2025-04-21 12:27:27 +03:00

tools/: the great removal of atrf_interrupt

- atrf-proxy/PROTOCOL, atrf-proxy/atrf-proxy.c (cmd_zero): removed the
  POLL command
- lib/atben.c (atben_driver): don't export atben_interrupt anymore (we
  still use it internally)
- lib/atnet.c (atnet_interrupt, atnet_driver): removed atnet_interrupt
- lib/atusb-common.h (atusb_interrupt), lib/atusb-common.h
  (atusb_interrupt), lib/atusb-spi.c (atusb_spi_driver),
  lib/atusb.c (atusb_driver): removed atusb_interrupt
- lib/driver.h (struct atrf_driver): removed "interrupt"
- include/atrf.h (atrf_interrupt), lib/atrf.c (atrf_interrupt): removed
This commit is contained in:
Werner Almesberger
2011-06-20 21:03:52 -03:00
parent 12fef1b196
commit d0fb1a8992
11 changed files with 0 additions and 71 deletions

View File

@@ -441,28 +441,6 @@ static uint8_t atnet_sram_read(void *handle, uint8_t addr)
/* ----- RF interrupt ------------------------------------------------------ */
static int atnet_interrupt(void *handle)
{
struct atnet_dsc *dsc = handle;
unsigned long value;
char *end;
if (dsc->error)
return -1;
if (dialog(dsc, "POLL") < 0) {
dsc->error = 1;
return -1;
}
value = strtoul(dsc->reply+1, &end, 0);
if (*end || value > 1) {
fprintf(stderr, "invalid response \"%s\"\n", dsc->reply+1);
dsc->error = 1;
return -1;
}
return value;
}
int atnet_interrupt_wait(void *handle, int timeout_ms)
{
struct atnet_dsc *dsc = handle;
@@ -515,6 +493,5 @@ struct atrf_driver atnet_driver = {
.buf_read = atnet_buf_read,
.sram_write = atnet_sram_write,
.sram_read = atnet_sram_read,
.interrupt = atnet_interrupt,
.interrupt_wait = atnet_interrupt_wait,
};