osd-contiki/cpu/mc1322x/tests/rftest-rx.c

103 lines
3 KiB
C
Raw Normal View History

/*
* Copyright (c) 2010, Mariano Alvira <mar@devl.org> and other contributors
* to the MC1322x project (http://mc1322x.devl.org)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This file is part of libmc1322x: see http://mc1322x.devl.org
* for details.
*
*
*/
2010-02-26 23:44:39 +01:00
#include <mc1322x.h>
#include <board.h>
2010-03-03 19:39:14 +01:00
#include <stdio.h>
2010-02-26 23:44:39 +01:00
#include "tests.h"
#include "config.h"
2009-04-02 20:54:02 +02:00
#define LED LED_GREEN
void maca_rx_callback(volatile packet_t *p) {
(void)p;
2010-03-17 03:03:38 +01:00
gpio_data_set(1ULL<< LED);
gpio_data_reset(1ULL<< LED);
}
2010-03-09 00:12:31 +01:00
void main(void) {
2010-03-07 03:47:22 +01:00
volatile packet_t *p;
2010-12-24 20:30:06 +01:00
volatile uint8_t chan;
2009-04-02 20:54:02 +02:00
2010-03-17 03:03:38 +01:00
gpio_data(0);
gpio_pad_dir_set( 1ULL << LED );
/* read from the data register instead of the pad */
/* this is needed because the led clamps the voltage low */
2010-03-17 03:03:38 +01:00
gpio_data_sel( 1ULL << LED);
/* trim the reference osc. to 24MHz */
trim_xtal();
2012-10-24 03:50:32 +02:00
uart_init(UART1, 115200);
2010-03-07 03:47:22 +01:00
2009-04-11 23:17:37 +02:00
vreg_init();
maca_init();
2010-03-01 19:01:51 +01:00
2010-03-08 23:36:42 +01:00
/* sets up tx_on, should be a board specific item */
2010-03-17 03:03:38 +01:00
// *GPIO_FUNC_SEL2 = (0x01 << ((44-16*2)*2));
gpio_pad_dir_set( 1ULL << 44 );
set_power(0x0f); /* 0dbm */
2010-12-24 20:30:06 +01:00
chan = 0;
set_channel(chan); /* channel 11 */
print_welcome("rftest-rx");
2009-04-02 20:54:02 +02:00
while(1) {
2010-04-06 23:10:28 +02:00
/* call check_maca() periodically --- this works around */
/* a few lockup conditions */
check_maca();
2010-03-07 03:47:22 +01:00
if((p = rx_packet())) {
/* print and free the packet */
printf("rftest-rx --- ");
print_packet(p);
maca_free_packet(p);
}
2010-12-24 20:30:06 +01:00
if(uart1_can_get()) {
uart1_getc();
chan++;
if(chan >= 16) { chan = 0; }
set_channel(chan);
printf("channel: %d\n\r", chan);
}
2010-03-07 03:47:22 +01:00
}
}