2014-05-14 10:36:45 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 INRIA
|
|
|
|
*
|
2014-07-31 19:45:27 +02:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2014-05-14 10:36:45 +02:00
|
|
|
*/
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-12-16 17:54:58 +01:00
|
|
|
#include "at86rf231.h"
|
|
|
|
#include "at86rf231_arch.h"
|
2014-02-20 03:05:35 +01:00
|
|
|
#include "at86rf231_spi.h"
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2014-08-05 23:54:24 +02:00
|
|
|
#include "kernel_types.h"
|
2013-12-16 17:54:58 +01:00
|
|
|
#include "transceiver.h"
|
|
|
|
#include "msg.h"
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-12-16 17:54:58 +01:00
|
|
|
#define ENABLE_DEBUG (0)
|
2014-03-09 09:52:50 +01:00
|
|
|
#if ENABLE_DEBUG
|
|
|
|
#define DEBUG_ENABLED
|
|
|
|
#endif
|
2013-12-16 17:54:58 +01:00
|
|
|
#include "debug.h"
|
2013-07-12 12:31:16 +02:00
|
|
|
|
|
|
|
at86rf231_packet_t at86rf231_rx_buffer[AT86RF231_RX_BUF_SIZE];
|
|
|
|
uint8_t buffer[AT86RF231_RX_BUF_SIZE][AT86RF231_MAX_PKT_LENGTH];
|
|
|
|
volatile uint8_t rx_buffer_next;
|
|
|
|
|
|
|
|
void at86rf231_rx_handler(void)
|
|
|
|
{
|
2013-08-15 19:13:00 +02:00
|
|
|
uint8_t lqi, fcs_rssi;
|
|
|
|
// read packet length
|
|
|
|
at86rf231_read_fifo(&at86rf231_rx_buffer[rx_buffer_next].length, 1);
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-08-15 19:13:00 +02:00
|
|
|
// read psdu, read packet with length as first byte and lqi as last byte.
|
|
|
|
uint8_t *buf = buffer[rx_buffer_next];
|
|
|
|
at86rf231_read_fifo(buf, at86rf231_rx_buffer[rx_buffer_next].length);
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-08-15 19:13:00 +02:00
|
|
|
// read lqi which is appended after the psdu
|
|
|
|
lqi = buf[at86rf231_rx_buffer[rx_buffer_next].length - 1];
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-08-15 19:13:00 +02:00
|
|
|
// read fcs and rssi, from a register
|
|
|
|
fcs_rssi = at86rf231_reg_read(AT86RF231_REG__PHY_RSSI);
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-08-15 19:13:00 +02:00
|
|
|
// build package
|
|
|
|
at86rf231_rx_buffer[rx_buffer_next].lqi = lqi;
|
|
|
|
// RSSI has no meaning here, it should be read during packet reception.
|
|
|
|
at86rf231_rx_buffer[rx_buffer_next].rssi = fcs_rssi & 0x0F; // bit[4:0]
|
|
|
|
// bit7, boolean, 1 FCS valid, 0 FCS not valid
|
|
|
|
at86rf231_rx_buffer[rx_buffer_next].crc = (fcs_rssi >> 7) & 0x01;
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-08-15 19:13:00 +02:00
|
|
|
if (at86rf231_rx_buffer[rx_buffer_next].crc == 0) {
|
|
|
|
DEBUG("Got packet with invalid crc.\n");
|
|
|
|
return;
|
|
|
|
}
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-09-18 14:42:13 +02:00
|
|
|
ieee802154_frame_read(&buf[1], &at86rf231_rx_buffer[rx_buffer_next].frame,
|
2014-02-20 14:35:46 +01:00
|
|
|
at86rf231_rx_buffer[rx_buffer_next].length);
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-08-15 19:13:00 +02:00
|
|
|
if (at86rf231_rx_buffer[rx_buffer_next].frame.fcf.frame_type != 2) {
|
2014-03-09 09:52:50 +01:00
|
|
|
#if DEBUG_ENABLED
|
2013-09-18 14:42:13 +02:00
|
|
|
ieee802154_frame_print_fcf_frame(&at86rf231_rx_buffer[rx_buffer_next].frame);
|
2013-07-12 12:31:16 +02:00
|
|
|
#endif
|
2013-08-15 19:13:00 +02:00
|
|
|
|
|
|
|
/* notify transceiver thread if any */
|
2014-08-06 09:27:23 +02:00
|
|
|
if (transceiver_pid > KERNEL_PID_UNDEF) {
|
2013-08-15 19:13:00 +02:00
|
|
|
msg_t m;
|
|
|
|
m.type = (uint16_t) RCV_PKT_AT86RF231;
|
|
|
|
m.content.value = rx_buffer_next;
|
|
|
|
msg_send_int(&m, transceiver_pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2014-03-09 09:52:50 +01:00
|
|
|
#if DEBUG_ENABLED
|
2013-08-15 19:13:00 +02:00
|
|
|
DEBUG("GOT ACK for SEQ %u\n", at86rf231_rx_buffer[rx_buffer_next].frame.seq_nr);
|
2013-09-18 14:42:13 +02:00
|
|
|
ieee802154_frame_print_fcf_frame(&at86rf231_rx_buffer[rx_buffer_next].frame);
|
2013-07-12 12:31:16 +02:00
|
|
|
#endif
|
2013-08-15 19:13:00 +02:00
|
|
|
}
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-08-15 19:13:00 +02:00
|
|
|
// shift to next buffer element
|
|
|
|
if (++rx_buffer_next == AT86RF231_RX_BUF_SIZE) {
|
|
|
|
rx_buffer_next = 0;
|
|
|
|
}
|
2013-07-12 12:31:16 +02:00
|
|
|
|
2013-08-15 19:13:00 +02:00
|
|
|
// Read IRQ to clear it
|
|
|
|
at86rf231_reg_read(AT86RF231_REG__IRQ_STATUS);
|
2013-07-12 12:31:16 +02:00
|
|
|
}
|