1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-11-06 01:55:01 +02:00
ben-wpan/tools/atspi-rssi/atspi-rssi.c
Werner Almesberger 0463bbea5d Added graphical display of RSSI scan results.
- tools/Makefile.common: CFLAGS and OBJS can now be target-specific
- tools/atspi-rssi/Makefile: add SDL, SDL_gfx, and the GUI object files
  when building on the host
- tools/atspi-rssi/Makefile: set -DHAVE_GFX when building on the host
- tools/atspi-rssi/atspi-rssi.c (usage, main): new option -g to use GUI
  mode
- tools/atspi-rssi/atspi-rssi.c (main): rename variable for the number of
  sweeps in non-GUI mode from "sweeps" to "arg", since it may have other
  uses in the future
- tools/atspi-rssi/digit.h, tools/atspi-rssi/digit.c: draw 7 segment style
  digits
- tools/atspi-rssi/zgrid.h, tools/atspi-rssi/zgrid.c: display a surface in
  faux 3D with SDL/SDL_gfx
- tools/tools/atspi-rssi/gui.h, tools/atspi-rssi/gui.c: display RSSI scans
  as a scrolling 3D profile
2010-11-08 20:31:38 -03:00

142 lines
2.4 KiB
C

/*
* atspi-rssi/atspi-rssi.c - ben-wpan AT86RF230 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 <unistd.h>
#include <signal.h>
#include <sys/time.h>
#include "at86rf230.h"
#include "atspi.h"
#include "misctxrx.h"
#ifdef HAVE_GFX
#include "gui.h"
#else
#define gui(dsc) abort()
#endif
static struct timeval t0;
static volatile int run = 1;
static void sweep(struct atspi_dsc *dsc)
{
int chan, rssi;
struct timeval t;
for (chan = 11; chan <= 26; chan++) {
atspi_reg_write(dsc, REG_PHY_CC_CCA, chan);
/* 150 us, according to AVR2001 section 3.5 */
wait_for_interrupt(dsc, IRQ_PLL_LOCK, IRQ_PLL_LOCK, 10, 20);
gettimeofday(&t, NULL);
rssi = atspi_reg_read(dsc, 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 die(int sig)
{
run = 0;
}
static void usage(const char *name)
{
fprintf(stderr,
"usage: %s [-n] sweeps\n", name);
#ifdef HAVE_GFX
fprintf(stderr,
"%6s %s -g\n", "", name);
#endif
exit(1);
}
int main(int argc, char **argv)
{
struct atspi_dsc *dsc;
unsigned long arg = 0, i;
char *end;
int c;
int graphical = 0;
while ((c = getopt(argc, argv, "gn")) != EOF)
switch (c) {
#ifdef HAVE_GFX
case 'g':
graphical = 1;
break;
#endif
case 'n':
break;
default:
usage(*argv);
}
switch (argc-optind) {
case 0:
if (!graphical)
usage(*argv);
break;
case 1:
if (graphical)
usage(*argv);
arg = strtoul(argv[optind], &end, 0);
if (*end)
usage(*argv);
break;
default:
usage(*argv);
}
signal(SIGINT, die);
dsc = atspi_open();
if (!dsc)
return 1;
atspi_reg_write(dsc, REG_TRX_STATE, TRX_CMD_TRX_OFF);
atspi_reg_write(dsc, REG_TRX_STATE, TRX_CMD_RX_ON);
/*
* We'll wait for the PLL lock after selecting the channel.
*/
if (graphical)
gui(dsc);
else {
gettimeofday(&t0, NULL);
for (i = 0; run && i != arg; i++)
sweep(dsc);
}
atspi_reg_write(dsc, REG_TRX_STATE, TRX_CMD_TRX_OFF);
atspi_close(dsc);
return 0;
}