1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-09-30 01:41:59 +03:00

removed atben/tools/ (functionality has moved to atrf-id long ago)

This commit is contained in:
Werner Almesberger 2011-01-17 11:33:27 -03:00
parent 319bd8345d
commit 0dc344a0ec
2 changed files with 0 additions and 36 deletions

View File

@ -1,7 +0,0 @@
CC=mipsel-openwrt-linux-gcc
CFLAGS=-Wall -I../../atrf/fw/include
MAIN = try
OBJS = $(MAIN).c lib/atusd.o
$(MAIN): $(OBJS)

View File

@ -1,29 +0,0 @@
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
#include "at86rf230.h"
#include "lib/atusd.h"
int main(void)
{
struct atusd_dsc *dsc;
uint8_t part, version, man_id_0, man_id_1;
dsc = atusd_open();
atusd_cycle(dsc);
// atusd_reset(dsc);
part = atusd_reg_read(dsc, REG_PART_NUM);
version = atusd_reg_read(dsc, REG_VERSION_NUM);
man_id_0 = atusd_reg_read(dsc, REG_MAN_ID_0);
man_id_1 = atusd_reg_read(dsc, REG_MAN_ID_1);
printf("part 0x%02x version %u manufacturer xxxx%02x%02x\n",
part, version, man_id_1, man_id_0);
atusd_close(dsc);
return 0;
}