osd-contiki/tests/rftest-tx.c

185 lines
3.4 KiB
C
Raw Normal View History

2010-02-27 00:27:58 +01:00
#include <mc1322x.h>
#include <board.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
2009-05-21 02:12:39 +02:00
#define DELAY 100000
2009-04-02 20:54:02 +02:00
#define DATA 0x00401000;
2009-04-14 00:19:13 +02:00
uint32_t ackBox[10];
#define command_xcvr_rx() \
do { \
maca_txlen = (uint32_t)1<<16; \
maca_dmatx = (uint32_t)&ackBox; \
maca_dmarx = DATA; \
maca_tmren = (maca_cpl_clk | maca_soft_clk); \
maca_control = (control_prm | control_asap | control_seq_rx); \
2010-02-27 00:27:58 +01:00
}while(0)
2009-04-14 00:19:13 +02:00
2009-05-21 02:12:39 +02:00
#define PAYLOAD_LEN 16 /* not including the extra 4 bytes for len+fcs+somethingelse */
2009-04-14 00:19:13 +02:00
/* maca dmatx needs extra 4 bytes for checksum */
/* needs + 4 bytes for len(1 byte) + fcs(2 bytes) + somethingelse */
#define command_xcvr_tx() \
do { \
2010-02-27 00:27:58 +01:00
maca_txlen = (uint32_t)(PAYLOAD_LEN+4); \
2009-04-14 00:19:13 +02:00
maca_dmatx = (uint32_t)DATA; \
maca_dmarx = (uint32_t)&ackBox; \
maca_control = (control_prm | control_mode_no_cca | \
control_asap | control_seq_tx); \
2010-02-27 00:27:58 +01:00
}while(0)
2009-04-14 00:19:13 +02:00
volatile uint8_t led;
#define LED LED_RED
2010-02-27 00:27:58 +01:00
#define led_on() do { led = 1; *GPIO_DATA0 = LED; } while(0);
#define led_off() do { led = 0; *GPIO_DATA0 = 0x00000000; } while(0);
2009-04-14 00:19:13 +02:00
void toggle_led(void) {
if(0 == led) {
led_on();
led = 1;
} else {
led_off();
}
}
volatile uint8_t *data;
uint8_t count=0;
void fill_data(void) {
uint8_t i;
for(i=0; i<PAYLOAD_LEN; i++) {
data[i] = count++;
}
}
2009-04-02 20:54:02 +02:00
void main(void) {
volatile uint32_t i;
2009-04-14 00:19:13 +02:00
uint16_t status;
2009-04-02 20:54:02 +02:00
2010-02-27 00:27:58 +01:00
*GPIO_PAD_DIR0 = LED;
2009-04-14 00:19:13 +02:00
led_on();
2010-02-27 00:27:58 +01:00
uart_init(INC,MOD);
2009-04-14 00:19:13 +02:00
reset_maca();
radio_init();
vreg_init();
flyback_init();
init_phy();
2010-03-01 19:01:51 +01:00
/* trim the reference osc. to 24MHz */
pack_XTAL_CNTL(CTUNE_4PF, CTUNE, FTUNE, IBIAS);
2009-04-14 00:19:13 +02:00
set_power(0x0f); /* 0dbm */
set_channel(0); /* channel 11 */
2009-04-14 00:19:13 +02:00
2010-02-27 00:27:58 +01:00
*MACA_CONTROL = SMAC_MACA_CNTL_INIT_STATE;
for(i=0; i<DELAY; i++) { continue; }
data = (void *)DATA;
2010-02-27 00:27:58 +01:00
*MACA_DMARX = DATA; /* put data somewhere */
*MACA_PREAMBLE = 0;
2010-02-27 00:27:58 +01:00
/* sets up tx_on, should be a board specific item */
*GPIO_FUNC_SEL2 = (0x01 << ((44-16*2)*2));
*GPIO_PAD_DIR0 = *GPIO_PAD_DIR0 | (1<<(44-32));
2009-05-21 02:12:39 +02:00
2009-04-14 00:19:13 +02:00
fill_data();
command_xcvr_tx();
2009-04-02 20:54:02 +02:00
while(1) {
2009-04-14 00:19:13 +02:00
if(_is_action_complete_interrupt(maca_irq)) {
maca_clrirq = maca_irq;
2010-02-27 00:27:58 +01:00
status = *MACA_STATUS & 0x0000ffff;
2009-04-14 00:19:13 +02:00
switch(status)
{
case(cc_aborted):
{
putstr("aborted\n\r");
2009-04-14 00:19:13 +02:00
ResumeMACASync();
break;
}
2009-04-14 00:19:13 +02:00
case(cc_not_completed):
{
putstr("not completed\n\r");
2009-04-14 00:19:13 +02:00
ResumeMACASync();
break;
}
case(cc_timeout):
{
putstr("timeout\n\r");
2009-04-14 00:19:13 +02:00
ResumeMACASync();
break;
}
case(cc_no_ack):
{
putstr("no ack\n\r");
2009-04-14 00:19:13 +02:00
ResumeMACASync();
break;
}
case(cc_ext_timeout):
{
putstr("ext timeout\n\r");
2009-04-14 00:19:13 +02:00
ResumeMACASync();
break;
}
case(cc_ext_pnd_timeout):
{
putstr("ext pnd timeout\n\r");
2009-04-14 00:19:13 +02:00
ResumeMACASync();
break;
}
case(cc_success):
{
// putstr("success\n\r");
2009-04-14 00:19:13 +02:00
putstr("rftest-tx --- " );
putstr(" payload len+crc: 0x");
2009-04-14 00:19:13 +02:00
put_hex(PAYLOAD_LEN+4);
putstr(" timestamp: 0x");
2009-04-14 00:19:13 +02:00
put_hex32(maca_timestamp);
putstr("\n\r");
putstr(" data: ");
2009-04-14 00:19:13 +02:00
for(i=0; i<PAYLOAD_LEN; i++) {
put_hex(data[i]);
putchr(' ');
2009-04-14 00:19:13 +02:00
}
putstr("\n\r");
2009-04-14 00:19:13 +02:00
toggle_led();
2009-04-14 00:19:13 +02:00
fill_data();
command_xcvr_tx();
break;
}
default:
{
putstr("status: ");
2009-04-14 00:19:13 +02:00
put_hex16(status);
ResumeMACASync();
}
}
} else if (_is_filter_failed_interrupt(maca_irq)) {
putstr("filter failed\n\r");
2009-04-14 00:19:13 +02:00
ResumeMACASync();
}
2009-04-02 20:54:02 +02:00
for(i=0; i<DELAY; i++) { continue; }
2009-04-14 00:19:13 +02:00
2009-04-02 20:54:02 +02:00
};
}