1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-03 00:15:26 +03:00

tools/atspi-rssi/: spectrum scan utility

This commit is contained in:
Werner Almesberger 2010-08-22 05:42:41 -03:00
parent 7a534d2269
commit 723cfad924
2 changed files with 113 additions and 0 deletions

21
tools/atspi-rssi/Makefile Normal file
View File

@ -0,0 +1,21 @@
#
# atspi-rssi/Makefile - Build the spectrum scan utility
#
# Written 2010 by Werner Almesberger
# Copyright 2010 Werner Almesberger
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
F32XBASE = ../../../f32xbase
MAIN = atspi-rssi
include $(F32XBASE)/lib/Makefile.common
CFLAGS += -I../../fw/include -I../include
LDLIBS += -L../lib -latspi

View File

@ -0,0 +1,92 @@
/*
* atspi-rssi/atspi-rssi.c - ben-wpan AF86RF230 spectrum scan
*
* Written 2010 by Werner Almesberger
* Copyright 2010 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#include <stdlib.h>
#include <stdio.h>
#include <usb.h>
#include <sys/time.h>
#include "at86rf230.h"
#include "atspi/ep0.h"
#include "atspi.h"
#define FROM_DEV ATSPI_FROM_DEV(0)
#define TO_DEV ATSPI_TO_DEV(0)
static struct timeval t0;
static void sweep(usb_dev_handle *dev)
{
int chan, rssi;
struct timeval t;
for (chan = 11; chan <= 26; chan++) {
atspi_reg_write(dev, REG_PHY_CC_CCA, chan);
/*
* No need to explicitly wait for the PPL lock - going USB-SPI
* is pretty slow, leaving the transceiver plenty of time.
*/
gettimeofday(&t, NULL);
rssi = atspi_reg_read(dev, REG_PHY_RSSI) & RSSI_MASK;
t.tv_sec -= t0.tv_sec;
t.tv_usec -= t0.tv_usec;
printf("%d %f %d\n",
2405+(chan-11)*5,
(double) t.tv_sec+t.tv_usec/1000000.0,
-91+3*(rssi-1));
}
printf("\n");
}
static void usage(const char *name)
{
fprintf(stderr, "%s sweeps \n", name);
exit(1);
}
int main(int argc, const char **argv)
{
usb_dev_handle *dev;
unsigned long sweeps, i;
char *end;
if (argc != 2)
usage(*argv);
sweeps = strtoul(argv[1], &end, 0);
if (*end)
usage(*argv);
dev = atspi_open();
if (!dev)
return 1;
atspi_reg_write(dev, REG_TRX_STATE, TRX_CMD_TRX_OFF);
/*
* No need to explicitly wait for things to stabilize - going USB-SPI
* is pretty slow, leaving the transceiver more than enough time.
*/
atspi_reg_write(dev, REG_TRX_STATE, TRX_CMD_RX_ON);
gettimeofday(&t0, NULL);
for (i = 0; i != sweeps; i++)
sweep(dev);
atspi_reg_write(dev, REG_TRX_STATE, TRX_CMD_TRX_OFF);
return 0;
}