2010-02-27 00:27:58 +01:00
|
|
|
#include <mc1322x.h>
|
|
|
|
#include <board.h>
|
2010-03-02 23:52:31 +01:00
|
|
|
#include <stdio.h>
|
2009-04-02 20:54:02 +02:00
|
|
|
|
2010-02-27 00:27:58 +01:00
|
|
|
#include "tests.h"
|
|
|
|
#include "config.h"
|
2009-04-02 20:54:02 +02:00
|
|
|
|
2010-03-07 22:49:57 +01:00
|
|
|
#define LED LED_RED
|
2009-04-02 20:54:02 +02:00
|
|
|
|
2010-03-08 00:48:36 +01: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-09 00:13:48 +01:00
|
|
|
#define DELAY 100000
|
2009-04-14 00:19:13 +02:00
|
|
|
|
2010-03-07 22:49:57 +01:00
|
|
|
void fill_packet(volatile packet_t *p) {
|
|
|
|
static volatile uint8_t count=0;
|
|
|
|
volatile uint8_t i;
|
|
|
|
p->length = PAYLOAD_LEN;
|
2010-03-07 23:04:30 +01:00
|
|
|
p->offset = 0;
|
2010-03-08 21:22:37 +01:00
|
|
|
for(i=0; i<PAYLOAD_LEN; i++) {
|
2010-03-07 22:49:57 +01:00
|
|
|
p->data[i] = count++;
|
2010-03-08 21:22:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* acks get treated differently, even in promiscuous mode */
|
2010-03-09 00:27:52 +01:00
|
|
|
/* setting the third bit makes sure that we never send an ack */
|
2010-03-08 21:22:37 +01:00
|
|
|
/* or any valid 802.15.4-2006 packet */
|
2010-03-09 00:27:52 +01:00
|
|
|
p->data[0] |= (1 << 3);
|
2009-04-14 00:19:13 +02:00
|
|
|
}
|
|
|
|
|
2009-04-02 20:54:02 +02:00
|
|
|
void main(void) {
|
|
|
|
volatile uint32_t i;
|
2010-03-07 22:49:57 +01:00
|
|
|
volatile packet_t *p;
|
|
|
|
|
2010-03-08 20:49:31 +01:00
|
|
|
/* trim the reference osc. to 24MHz */
|
2010-03-16 15:40:25 +01:00
|
|
|
trim_xtal();
|
2009-04-02 20:54:02 +02:00
|
|
|
|
2010-03-10 00:23:40 +01:00
|
|
|
uart_init(INC, MOD, SAMP);
|
2009-04-16 23:59:00 +02:00
|
|
|
|
2009-04-14 00:19:13 +02:00
|
|
|
vreg_init();
|
2009-04-03 00:05:13 +02:00
|
|
|
|
2010-03-08 20:49:31 +01:00
|
|
|
maca_init();
|
2010-03-01 19:01:51 +01:00
|
|
|
|
2010-03-08 20:49:31 +01:00
|
|
|
set_channel(0); /* channel 11 */
|
2010-03-08 00:48:36 +01:00
|
|
|
// set_power(0x0f); /* 0xf = -1dbm, see 3-22 */
|
|
|
|
// set_power(0x11); /* 0x11 = 3dbm, see 3-22 */
|
2010-03-08 20:49:31 +01:00
|
|
|
set_power(0x12); /* 0x12 is the highest, not documented */
|
|
|
|
|
|
|
|
*GPIO_DATA0 = 0x00000000;
|
|
|
|
*GPIO_PAD_DIR0 = ( 1 << LED );
|
|
|
|
/* read from the data register instead of the pad */
|
|
|
|
/* this is needed because the led clamps the voltage low */
|
|
|
|
*GPIO_DATA_SEL0 = ( 1 << LED );
|
2009-04-14 00:19:13 +02:00
|
|
|
|
2010-03-08 20:49:31 +01:00
|
|
|
/* sets up tx_on, should be a board specific item */
|
|
|
|
*GPIO_FUNC_SEL2 = (0x01 << ((44-16*2)*2));
|
2010-03-08 23:36:42 +01:00
|
|
|
*GPIO_PAD_DIR_SET1 = (1 << (44-32));
|
2010-03-08 20:49:31 +01:00
|
|
|
|
|
|
|
print_welcome("rftest-tx");
|
2009-04-14 00:19:13 +02:00
|
|
|
|
2009-04-02 20:54:02 +02:00
|
|
|
while(1) {
|
2010-03-07 22:49:57 +01:00
|
|
|
|
|
|
|
p = get_free_packet();
|
|
|
|
if(p) {
|
|
|
|
fill_packet(p);
|
2009-04-14 00:19:13 +02:00
|
|
|
|
2010-03-07 22:49:57 +01:00
|
|
|
printf("rftest-tx --- ");
|
|
|
|
print_packet(p);
|
2010-03-09 00:39:08 +01:00
|
|
|
|
2010-03-07 22:49:57 +01:00
|
|
|
tx_packet(p);
|
|
|
|
|
|
|
|
for(i=0; i<DELAY; i++) { continue; }
|
2009-04-14 00:19:13 +02:00
|
|
|
}
|
|
|
|
|
2010-03-07 22:49:57 +01:00
|
|
|
}
|
2009-04-14 00:19:13 +02:00
|
|
|
|
2009-04-02 20:54:02 +02:00
|
|
|
}
|