2010-03-04 00:48:29 +01:00
|
|
|
#include <mc1322x.h>
|
|
|
|
#include <board.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "tests.h"
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
/* This program communicates with itself and determines the packet */
|
|
|
|
/* error rate (PER) under a variety of powers and packet sizes */
|
|
|
|
/* Each test the packets are sent and received as fast as possible */
|
|
|
|
|
|
|
|
/* The program first scans on channel 11 and attempts to open a test */
|
|
|
|
/* session with a node. After opening a session, the nodes begin the */
|
|
|
|
/* test sequence */
|
|
|
|
|
2010-03-05 00:52:42 +01:00
|
|
|
/* how long to wait between session requests */
|
2010-03-08 18:42:37 +01:00
|
|
|
#define SESSION_REQ_TIMEOUT 10000 /* phony seconds */
|
2010-03-04 00:48:29 +01:00
|
|
|
|
|
|
|
enum STATES {
|
|
|
|
SCANNING,
|
|
|
|
MAX_STATE
|
|
|
|
};
|
|
|
|
|
2010-03-05 00:52:42 +01:00
|
|
|
typedef uint32_t ptype_t;
|
2010-03-04 00:48:29 +01:00
|
|
|
enum PACKET_TYPE {
|
2010-03-05 00:52:42 +01:00
|
|
|
PACKET_SESS_REQ,
|
2010-03-04 00:48:29 +01:00
|
|
|
MAX_PACKET_TYPE
|
|
|
|
};
|
2010-03-05 00:52:42 +01:00
|
|
|
/* get protocol level packet type */
|
|
|
|
/* this is not 802.15.4 packet type */
|
2010-03-13 13:30:47 +01:00
|
|
|
ptype_t get_packet_type(packet_t * p __attribute__((unused))) {
|
2010-03-05 00:52:42 +01:00
|
|
|
return MAX_PACKET_TYPE;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef uint32_t session_id_t;
|
|
|
|
|
2010-03-08 18:42:37 +01:00
|
|
|
|
|
|
|
|
2010-03-05 00:52:42 +01:00
|
|
|
/* phony get_time */
|
|
|
|
uint32_t get_time(void) {
|
|
|
|
static volatile int32_t cur_time = 0;
|
|
|
|
cur_time++;
|
|
|
|
return cur_time;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define random_short_addr() (*MACA_RANDOM & ones(sizeof(short_addr_t)*8))
|
|
|
|
|
|
|
|
void build_session_req(volatile packet_t *p) {
|
2010-03-08 18:42:37 +01:00
|
|
|
static uint8_t count = 0;
|
|
|
|
p->length = 4; p->offset = 0;
|
|
|
|
p->data[0] = 0xff;
|
|
|
|
p->data[1] = 0x01;
|
|
|
|
p->data[2] = 0x02;
|
|
|
|
p->data[3] = count++;
|
2010-03-05 00:52:42 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-03-13 13:30:47 +01:00
|
|
|
void session_req(short_addr_t addr __attribute__((unused))) {
|
2010-03-05 00:52:42 +01:00
|
|
|
static volatile int time = 0;
|
|
|
|
volatile packet_t *p;
|
|
|
|
|
2010-03-06 23:58:49 +01:00
|
|
|
if((get_time() - time) > SESSION_REQ_TIMEOUT) {
|
|
|
|
time = get_time();
|
|
|
|
if((p = get_free_packet())) {
|
|
|
|
build_session_req(p);
|
|
|
|
tx_packet(p);
|
|
|
|
}
|
2010-03-05 23:06:08 +01:00
|
|
|
}
|
2010-03-05 00:52:42 +01:00
|
|
|
return;
|
|
|
|
}
|
2010-03-04 00:48:29 +01:00
|
|
|
|
2010-03-13 13:30:47 +01:00
|
|
|
session_id_t open_session(short_addr_t addr __attribute((unused))) { return 0; }
|
2010-03-04 00:48:29 +01:00
|
|
|
|
|
|
|
void main(void) {
|
|
|
|
uint32_t state;
|
2010-03-05 00:52:42 +01:00
|
|
|
volatile packet_t *p;
|
|
|
|
session_id_t sesid;
|
|
|
|
ptype_t type;
|
|
|
|
short_addr_t addr, my_addr;
|
2010-03-08 20:49:31 +01:00
|
|
|
|
|
|
|
/* trim the reference osc. to 24MHz */
|
|
|
|
pack_XTAL_CNTL(CTUNE_4PF, CTUNE, FTUNE, IBIAS);
|
2010-03-05 00:52:42 +01:00
|
|
|
|
2010-03-13 13:30:47 +01:00
|
|
|
uart_init(INC, MOD, SAMP);
|
2010-03-04 00:48:29 +01:00
|
|
|
|
|
|
|
vreg_init();
|
|
|
|
|
2010-03-08 20:49:31 +01:00
|
|
|
maca_init();
|
|
|
|
|
2010-03-04 00:48:29 +01:00
|
|
|
set_power(0x0f); /* 0dbm */
|
|
|
|
set_channel(0); /* channel 11 */
|
|
|
|
|
2010-03-05 00:52:42 +01:00
|
|
|
/* generate a random short address */
|
|
|
|
my_addr = random_short_addr();
|
|
|
|
|
2010-03-08 20:49:31 +01:00
|
|
|
/* sets up tx_on, should be a board specific item */
|
2010-03-06 01:25:38 +01:00
|
|
|
*GPIO_FUNC_SEL2 = (0x01 << ((44-16*2)*2));
|
|
|
|
*GPIO_PAD_DIR0 = *GPIO_PAD_DIR0 | (1<<(44-32));
|
|
|
|
|
2010-03-08 20:49:31 +01:00
|
|
|
print_welcome("Packet error test");
|
|
|
|
|
2010-03-04 00:48:29 +01:00
|
|
|
state = SCANNING;
|
|
|
|
while(1) {
|
2010-03-05 00:52:42 +01:00
|
|
|
|
2010-03-04 00:48:29 +01:00
|
|
|
switch(state) {
|
|
|
|
case SCANNING:
|
2010-03-05 00:52:42 +01:00
|
|
|
if((p = rx_packet())) {
|
|
|
|
/* extract what we need and free the packet */
|
2010-03-06 23:58:49 +01:00
|
|
|
printf("Recv: ");
|
|
|
|
print_packet(p);
|
2010-03-13 13:30:47 +01:00
|
|
|
type = get_packet_type((packet_t *) p);
|
2010-03-05 00:52:42 +01:00
|
|
|
addr = p->addr;
|
|
|
|
free_packet(p);
|
|
|
|
/* pick a new address if someone else is using ours */
|
|
|
|
if(addr == my_addr) {
|
|
|
|
my_addr = random_short_addr();
|
|
|
|
printf("DUP addr received, changing to new addr 0x%x02\n\r",my_addr);
|
|
|
|
}
|
2010-03-04 00:48:29 +01:00
|
|
|
/* if we have a packet */
|
2010-03-05 00:52:42 +01:00
|
|
|
/* check if it's a session request beacon */
|
|
|
|
if(type == PACKET_SESS_REQ) {
|
2010-03-04 00:48:29 +01:00
|
|
|
/* try to start a session */
|
2010-03-05 00:52:42 +01:00
|
|
|
sesid = open_session(p->addr);
|
2010-03-04 00:48:29 +01:00
|
|
|
}
|
2010-03-05 00:52:42 +01:00
|
|
|
} else {
|
2010-03-07 01:54:55 +01:00
|
|
|
session_req(my_addr);
|
2010-03-04 00:48:29 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|