contiki/tests/rftest-tx.c

72 lines
1.4 KiB
C
Raw Normal View History

2010-02-26 18:27:58 -05:00
#include <mc1322x.h>
#include <board.h>
2010-03-02 17:52:31 -05:00
#include <stdio.h>
2009-04-02 14:54:02 -04:00
2010-02-26 18:27:58 -05:00
#include "tests.h"
#include "config.h"
2009-04-02 14:54:02 -04:00
#define LED LED_RED
2009-04-02 14:54:02 -04:00
2010-03-07 18:48:36 -05:00
/* 802.15.4 PSDU is 127 MAX */
/* 2 bytes are the FCS */
/* therefore 125 is the max payload length */
#define PAYLOAD_LEN 16
2010-03-08 18:13:48 -05:00
#define DELAY 100000
2009-04-13 18:19:13 -04:00
void fill_packet(volatile packet_t *p) {
static volatile uint8_t count=0;
volatile uint8_t i;
p->length = PAYLOAD_LEN;
p->offset = 0;
2010-03-08 15:22:37 -05:00
for(i=0; i<PAYLOAD_LEN; i++) {
p->data[i] = count++;
2010-03-08 15:22:37 -05:00
}
/* acks get treated differently, even in promiscuous mode */
2010-03-08 18:27:52 -05:00
/* setting the third bit makes sure that we never send an ack */
2010-03-08 15:22:37 -05:00
/* or any valid 802.15.4-2006 packet */
2010-03-08 18:27:52 -05:00
p->data[0] |= (1 << 3);
2009-04-13 18:19:13 -04:00
}
2009-04-02 14:54:02 -04:00
void main(void) {
volatile uint32_t i;
volatile packet_t *p;
/* trim the reference osc. to 24MHz */
trim_xtal();
2009-04-02 14:54:02 -04:00
2010-03-09 18:23:40 -05:00
uart_init(INC, MOD, SAMP);
2009-04-13 18:19:13 -04:00
vreg_init();
maca_init();
2010-03-01 13:01:51 -05:00
set_channel(0); /* channel 11 */
2010-03-07 18:48:36 -05:00
// set_power(0x0f); /* 0xf = -1dbm, see 3-22 */
// set_power(0x11); /* 0x11 = 3dbm, see 3-22 */
set_power(0x12); /* 0x12 is the highest, not documented */
/* sets up tx_on, should be a board specific item */
*GPIO_FUNC_SEL2 = (0x01 << ((44-16*2)*2));
2010-03-16 22:03:38 -04:00
gpio_pad_dir_set( 1ULL << 44 );
print_welcome("rftest-tx");
2009-04-13 18:19:13 -04:00
2009-04-02 14:54:02 -04:00
while(1) {
p = get_free_packet();
if(p) {
fill_packet(p);
2009-04-13 18:19:13 -04:00
printf("rftest-tx --- ");
print_packet(p);
tx_packet(p);
for(i=0; i<DELAY; i++) { continue; }
2009-04-13 18:19:13 -04:00
}
}
2009-04-13 18:19:13 -04:00
2009-04-02 14:54:02 -04:00
}