2007-09-18 12:35:39 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007, Swedish Institute of Computer Science.
|
|
|
|
* 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 the Contiki operating system.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* A simple power saving MAC protocol based on X-MAC [SenSys 2006]
|
|
|
|
* \author
|
|
|
|
* Adam Dunkels <adam@sics.se>
|
2010-01-31 19:44:23 +01:00
|
|
|
* Niclas Finne <nfi@sics.se>
|
|
|
|
* Joakim Eriksson <joakime@sics.se>
|
2007-09-18 12:35:39 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dev/leds.h"
|
|
|
|
#include "dev/radio.h"
|
2010-01-31 19:44:23 +01:00
|
|
|
#include "dev/watchdog.h"
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
#include "net/netstack.h"
|
2010-01-31 19:44:23 +01:00
|
|
|
#include "lib/random.h"
|
2013-11-26 17:25:18 +01:00
|
|
|
#include "net/mac/cxmac/cxmac.h"
|
2013-12-12 20:50:07 +01:00
|
|
|
#include "net/rime/rime.h"
|
2010-01-31 19:44:23 +01:00
|
|
|
#include "net/rime/timesynch.h"
|
|
|
|
#include "sys/compower.h"
|
|
|
|
#include "sys/pt.h"
|
|
|
|
#include "sys/rtimer.h"
|
2007-09-18 12:35:39 +02:00
|
|
|
|
|
|
|
#include "contiki-conf.h"
|
2014-12-01 13:58:34 +01:00
|
|
|
#include "sys/cc.h"
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
#ifdef EXPERIMENT_SETUP
|
|
|
|
#include "experiment-setup.h"
|
2007-09-18 12:35:39 +02:00
|
|
|
#endif
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
#include <string.h>
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
#ifndef WITH_ACK_OPTIMIZATION
|
|
|
|
#define WITH_ACK_OPTIMIZATION 1
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_ENCOUNTER_OPTIMIZATION
|
|
|
|
#define WITH_ENCOUNTER_OPTIMIZATION 1
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_STREAMING
|
|
|
|
#define WITH_STREAMING 1
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_STROBE_BROADCAST
|
|
|
|
#define WITH_STROBE_BROADCAST 0
|
2007-09-18 12:35:39 +02:00
|
|
|
#endif
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
struct announcement_data {
|
|
|
|
uint16_t id;
|
|
|
|
uint16_t value;
|
2007-09-18 12:35:39 +02:00
|
|
|
};
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* The maximum number of announcements in a single announcement
|
|
|
|
message - may need to be increased in the future. */
|
|
|
|
#define ANNOUNCEMENT_MAX 10
|
|
|
|
|
|
|
|
/* The structure of the announcement messages. */
|
|
|
|
struct announcement_msg {
|
|
|
|
uint16_t num;
|
|
|
|
struct announcement_data data[ANNOUNCEMENT_MAX];
|
2007-09-18 12:35:39 +02:00
|
|
|
};
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* The length of the header of the announcement message, i.e., the
|
|
|
|
"num" field in the struct. */
|
|
|
|
#define ANNOUNCEMENT_MSG_HEADERLEN (sizeof (uint16_t))
|
|
|
|
|
|
|
|
#define DISPATCH 0
|
|
|
|
#define TYPE_STROBE 0x10
|
|
|
|
/* #define TYPE_DATA 0x11 */
|
|
|
|
#define TYPE_ANNOUNCEMENT 0x12
|
|
|
|
#define TYPE_STROBE_ACK 0x13
|
|
|
|
|
|
|
|
struct cxmac_hdr {
|
|
|
|
uint8_t dispatch;
|
|
|
|
uint8_t type;
|
|
|
|
};
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
#define MAX_STROBE_SIZE 50
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
#ifdef CXMAC_CONF_ON_TIME
|
|
|
|
#define DEFAULT_ON_TIME (CXMAC_CONF_ON_TIME)
|
2007-09-18 12:35:39 +02:00
|
|
|
#else
|
2010-01-31 19:44:23 +01:00
|
|
|
#define DEFAULT_ON_TIME (RTIMER_ARCH_SECOND / 160)
|
2007-09-18 12:35:39 +02:00
|
|
|
#endif
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
#ifdef CXMAC_CONF_OFF_TIME
|
|
|
|
#define DEFAULT_OFF_TIME (CXMAC_CONF_OFF_TIME)
|
2007-09-18 12:35:39 +02:00
|
|
|
#else
|
2010-10-03 22:37:32 +02:00
|
|
|
#define DEFAULT_OFF_TIME (RTIMER_ARCH_SECOND / NETSTACK_RDC_CHANNEL_CHECK_RATE - DEFAULT_ON_TIME)
|
2010-01-31 19:44:23 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEFAULT_PERIOD (DEFAULT_OFF_TIME + DEFAULT_ON_TIME)
|
|
|
|
|
|
|
|
#define WAIT_TIME_BEFORE_STROBE_ACK RTIMER_ARCH_SECOND / 1000
|
|
|
|
|
|
|
|
/* On some platforms, we may end up with a DEFAULT_PERIOD that is 0
|
|
|
|
which will make compilation fail due to a modulo operation in the
|
|
|
|
code. To ensure that DEFAULT_PERIOD is greater than zero, we use
|
|
|
|
the construct below. */
|
|
|
|
#if DEFAULT_PERIOD == 0
|
|
|
|
#undef DEFAULT_PERIOD
|
|
|
|
#define DEFAULT_PERIOD 1
|
2007-09-18 12:35:39 +02:00
|
|
|
#endif
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* The cycle time for announcements. */
|
|
|
|
#define ANNOUNCEMENT_PERIOD 4 * CLOCK_SECOND
|
|
|
|
|
|
|
|
/* The time before sending an announcement within one announcement
|
|
|
|
cycle. */
|
|
|
|
#define ANNOUNCEMENT_TIME (random_rand() % (ANNOUNCEMENT_PERIOD))
|
|
|
|
|
|
|
|
#define DEFAULT_STROBE_WAIT_TIME (7 * DEFAULT_ON_TIME / 8)
|
|
|
|
|
|
|
|
struct cxmac_config cxmac_config = {
|
|
|
|
DEFAULT_ON_TIME,
|
|
|
|
DEFAULT_OFF_TIME,
|
|
|
|
4 * DEFAULT_ON_TIME + DEFAULT_OFF_TIME,
|
|
|
|
DEFAULT_STROBE_WAIT_TIME
|
|
|
|
};
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2010-02-02 17:33:07 +01:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
static struct pt pt;
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
static volatile uint8_t cxmac_is_on = 0;
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
static volatile unsigned char waiting_for_packet = 0;
|
2007-09-18 12:35:39 +02:00
|
|
|
static volatile unsigned char someone_is_sending = 0;
|
|
|
|
static volatile unsigned char we_are_sending = 0;
|
|
|
|
static volatile unsigned char radio_is_on = 0;
|
|
|
|
|
|
|
|
#undef LEDS_ON
|
|
|
|
#undef LEDS_OFF
|
|
|
|
#undef LEDS_TOGGLE
|
|
|
|
|
|
|
|
#define LEDS_ON(x) leds_on(x)
|
|
|
|
#define LEDS_OFF(x) leds_off(x)
|
|
|
|
#define LEDS_TOGGLE(x) leds_toggle(x)
|
2010-01-31 19:44:23 +01:00
|
|
|
#define DEBUG 0
|
|
|
|
#if DEBUG
|
2007-09-18 12:35:39 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#define PRINTF(...) printf(__VA_ARGS__)
|
2010-01-31 19:44:23 +01:00
|
|
|
#define PRINTDEBUG(...) printf(__VA_ARGS__)
|
2007-09-18 12:35:39 +02:00
|
|
|
#else
|
2010-01-31 19:44:23 +01:00
|
|
|
#undef LEDS_ON
|
|
|
|
#undef LEDS_OFF
|
|
|
|
#undef LEDS_TOGGLE
|
2007-09-18 12:35:39 +02:00
|
|
|
#define LEDS_ON(x)
|
|
|
|
#define LEDS_OFF(x)
|
|
|
|
#define LEDS_TOGGLE(x)
|
|
|
|
#define PRINTF(...)
|
2010-01-31 19:44:23 +01:00
|
|
|
#define PRINTDEBUG(...)
|
2007-09-18 12:35:39 +02:00
|
|
|
#endif
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
#if CXMAC_CONF_ANNOUNCEMENTS
|
|
|
|
/* Timers for keeping track of when to send announcements. */
|
|
|
|
static struct ctimer announcement_cycle_ctimer, announcement_ctimer;
|
|
|
|
|
|
|
|
static int announcement_radio_txpower;
|
|
|
|
#endif /* CXMAC_CONF_ANNOUNCEMENTS */
|
|
|
|
|
|
|
|
/* Flag that is used to keep track of whether or not we are listening
|
|
|
|
for announcements from neighbors. */
|
|
|
|
static uint8_t is_listening;
|
|
|
|
|
|
|
|
#if CXMAC_CONF_COMPOWER
|
|
|
|
static struct compower_activity current_packet;
|
|
|
|
#endif /* CXMAC_CONF_COMPOWER */
|
|
|
|
|
|
|
|
#if WITH_ENCOUNTER_OPTIMIZATION
|
|
|
|
|
|
|
|
#include "lib/list.h"
|
|
|
|
#include "lib/memb.h"
|
|
|
|
|
|
|
|
struct encounter {
|
|
|
|
struct encounter *next;
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_t neighbor;
|
2010-01-31 19:44:23 +01:00
|
|
|
rtimer_clock_t time;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MAX_ENCOUNTERS 4
|
|
|
|
LIST(encounter_list);
|
|
|
|
MEMB(encounter_memb, struct encounter, MAX_ENCOUNTERS);
|
|
|
|
#endif /* WITH_ENCOUNTER_OPTIMIZATION */
|
|
|
|
|
|
|
|
static uint8_t is_streaming;
|
2013-12-12 23:58:52 +01:00
|
|
|
static linkaddr_t is_streaming_to, is_streaming_to_too;
|
2010-01-31 19:44:23 +01:00
|
|
|
static rtimer_clock_t stream_until;
|
|
|
|
#define DEFAULT_STREAM_TIME (RTIMER_ARCH_SECOND)
|
|
|
|
|
2007-09-18 12:35:39 +02:00
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
2010-01-31 19:44:23 +01:00
|
|
|
on(void)
|
2007-09-18 12:35:39 +02:00
|
|
|
{
|
2010-01-31 19:44:23 +01:00
|
|
|
if(cxmac_is_on && radio_is_on == 0) {
|
|
|
|
radio_is_on = 1;
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_RADIO.on();
|
2010-01-31 19:44:23 +01:00
|
|
|
LEDS_ON(LEDS_RED);
|
|
|
|
}
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2010-01-31 19:44:23 +01:00
|
|
|
static void
|
|
|
|
off(void)
|
|
|
|
{
|
|
|
|
if(cxmac_is_on && radio_is_on != 0 && is_listening == 0 &&
|
|
|
|
is_streaming == 0) {
|
|
|
|
radio_is_on = 0;
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_RADIO.off();
|
2010-01-31 19:44:23 +01:00
|
|
|
LEDS_OFF(LEDS_RED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
powercycle_turn_radio_off(void)
|
|
|
|
{
|
|
|
|
if(we_are_sending == 0 &&
|
|
|
|
waiting_for_packet == 0) {
|
|
|
|
off();
|
|
|
|
}
|
|
|
|
#if CXMAC_CONF_COMPOWER
|
|
|
|
compower_accumulate(&compower_idle_activity);
|
|
|
|
#endif /* CXMAC_CONF_COMPOWER */
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
powercycle_turn_radio_on(void)
|
|
|
|
{
|
|
|
|
if(we_are_sending == 0 &&
|
|
|
|
waiting_for_packet == 0) {
|
|
|
|
on();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static struct ctimer cpowercycle_ctimer;
|
|
|
|
#define CSCHEDULE_POWERCYCLE(rtime) cschedule_powercycle((1ul * CLOCK_SECOND * (rtime)) / RTIMER_ARCH_SECOND)
|
|
|
|
static char cpowercycle(void *ptr);
|
|
|
|
static void
|
|
|
|
cschedule_powercycle(clock_time_t time)
|
|
|
|
{
|
2010-02-02 17:33:07 +01:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
if(cxmac_is_on) {
|
|
|
|
if(time == 0) {
|
|
|
|
time = 1;
|
|
|
|
}
|
|
|
|
ctimer_set(&cpowercycle_ctimer, time,
|
|
|
|
(void (*)(void *))cpowercycle, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static char
|
|
|
|
cpowercycle(void *ptr)
|
|
|
|
{
|
|
|
|
if(is_streaming) {
|
|
|
|
if(!RTIMER_CLOCK_LT(RTIMER_NOW(), stream_until)) {
|
|
|
|
is_streaming = 0;
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_copy(&is_streaming_to, &linkaddr_null);
|
|
|
|
linkaddr_copy(&is_streaming_to_too, &linkaddr_null);
|
2010-01-31 19:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-18 12:35:39 +02:00
|
|
|
PT_BEGIN(&pt);
|
|
|
|
|
|
|
|
while(1) {
|
2010-01-31 19:44:23 +01:00
|
|
|
/* Only wait for some cycles to pass for someone to start sending */
|
|
|
|
if(someone_is_sending > 0) {
|
|
|
|
someone_is_sending--;
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
2010-01-31 19:44:23 +01:00
|
|
|
|
|
|
|
/* If there were a strobe in the air, turn radio on */
|
|
|
|
powercycle_turn_radio_on();
|
|
|
|
CSCHEDULE_POWERCYCLE(DEFAULT_ON_TIME);
|
2007-09-18 12:35:39 +02:00
|
|
|
PT_YIELD(&pt);
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
if(cxmac_config.off_time > 0) {
|
|
|
|
powercycle_turn_radio_off();
|
|
|
|
if(waiting_for_packet != 0) {
|
|
|
|
waiting_for_packet++;
|
|
|
|
if(waiting_for_packet > 2) {
|
|
|
|
/* We should not be awake for more than two consecutive
|
|
|
|
power cycles without having heard a packet, so we turn off
|
|
|
|
the radio. */
|
|
|
|
waiting_for_packet = 0;
|
|
|
|
powercycle_turn_radio_off();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CSCHEDULE_POWERCYCLE(DEFAULT_OFF_TIME);
|
2007-09-18 12:35:39 +02:00
|
|
|
PT_YIELD(&pt);
|
|
|
|
}
|
2010-01-31 19:44:23 +01:00
|
|
|
}
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
PT_END(&pt);
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#if CXMAC_CONF_ANNOUNCEMENTS
|
2007-09-18 12:35:39 +02:00
|
|
|
static int
|
2013-12-12 23:58:52 +01:00
|
|
|
parse_announcements(const linkaddr_t *from)
|
2007-09-18 12:35:39 +02:00
|
|
|
{
|
2010-01-31 19:44:23 +01:00
|
|
|
/* Parse incoming announcements */
|
|
|
|
struct announcement_msg adata;
|
|
|
|
int i;
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
memcpy(&adata, packetbuf_dataptr(), MIN(packetbuf_datalen(), sizeof(adata)));
|
|
|
|
|
|
|
|
/* printf("%d.%d: probe from %d.%d with %d announcements\n",
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_node_addr.u8[0], linkaddr_node_addr.u8[1],
|
2010-01-31 19:44:23 +01:00
|
|
|
from->u8[0], from->u8[1], adata->num);*/
|
|
|
|
/* for(i = 0; i < packetbuf_datalen(); ++i) {
|
|
|
|
printf("%02x ", ((uint8_t *)packetbuf_dataptr())[i]);
|
|
|
|
}
|
|
|
|
printf("\n");*/
|
|
|
|
|
|
|
|
for(i = 0; i < adata.num; ++i) {
|
|
|
|
/* printf("%d.%d: announcement %d: %d\n",
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_node_addr.u8[0], linkaddr_node_addr.u8[1],
|
2010-01-31 19:44:23 +01:00
|
|
|
adata->data[i].id,
|
|
|
|
adata->data[i].value);*/
|
|
|
|
|
|
|
|
announcement_heard(from,
|
|
|
|
adata.data[i].id,
|
|
|
|
adata.data[i].value);
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
format_announcement(char *hdr)
|
|
|
|
{
|
|
|
|
struct announcement_msg adata;
|
|
|
|
struct announcement *a;
|
|
|
|
|
|
|
|
/* Construct the announcements */
|
|
|
|
/* adata = (struct announcement_msg *)hdr;*/
|
|
|
|
|
|
|
|
adata.num = 0;
|
|
|
|
for(a = announcement_list();
|
|
|
|
a != NULL && adata.num < ANNOUNCEMENT_MAX;
|
2010-06-15 21:22:25 +02:00
|
|
|
a = list_item_next(a)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
adata.data[adata.num].id = a->id;
|
|
|
|
adata.data[adata.num].value = a->value;
|
|
|
|
adata.num++;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(hdr, &adata, sizeof(struct announcement_msg));
|
|
|
|
|
|
|
|
if(adata.num > 0) {
|
|
|
|
return ANNOUNCEMENT_MSG_HEADERLEN +
|
|
|
|
sizeof(struct announcement_data) * adata.num;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CXMAC_CONF_ANNOUNCEMENTS */
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#if WITH_ENCOUNTER_OPTIMIZATION
|
|
|
|
static void
|
2013-12-12 23:58:52 +01:00
|
|
|
register_encounter(const linkaddr_t *neighbor, rtimer_clock_t time)
|
2010-01-31 19:44:23 +01:00
|
|
|
{
|
|
|
|
struct encounter *e;
|
|
|
|
|
|
|
|
/* If we have an entry for this neighbor already, we renew it. */
|
2010-06-15 21:22:25 +02:00
|
|
|
for(e = list_head(encounter_list); e != NULL; e = list_item_next(e)) {
|
2013-12-12 23:58:52 +01:00
|
|
|
if(linkaddr_cmp(neighbor, &e->neighbor)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
e->time = time;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* No matching encounter was found, so we allocate a new one. */
|
|
|
|
if(e == NULL) {
|
|
|
|
e = memb_alloc(&encounter_memb);
|
|
|
|
if(e == NULL) {
|
|
|
|
/* We could not allocate memory for this encounter, so we just drop it. */
|
|
|
|
return;
|
|
|
|
}
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_copy(&e->neighbor, neighbor);
|
2010-01-31 19:44:23 +01:00
|
|
|
e->time = time;
|
|
|
|
list_add(encounter_list, e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* WITH_ENCOUNTER_OPTIMIZATION */
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
send_packet(void)
|
|
|
|
{
|
|
|
|
rtimer_clock_t t0;
|
|
|
|
rtimer_clock_t t;
|
|
|
|
rtimer_clock_t encounter_time = 0;
|
|
|
|
int strobes;
|
|
|
|
struct cxmac_hdr *hdr;
|
|
|
|
int got_strobe_ack = 0;
|
|
|
|
uint8_t strobe[MAX_STROBE_SIZE];
|
|
|
|
int strobe_len, len;
|
|
|
|
int is_broadcast = 0;
|
2012-05-30 17:58:45 +02:00
|
|
|
int is_dispatch, is_strobe_ack;
|
|
|
|
/*int is_reliable;*/
|
2010-01-31 19:44:23 +01:00
|
|
|
struct encounter *e;
|
|
|
|
struct queuebuf *packet;
|
|
|
|
int is_already_streaming = 0;
|
|
|
|
uint8_t collisions;
|
|
|
|
|
2010-02-03 17:44:43 +01:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* Create the X-MAC header for the data packet. */
|
2011-03-21 22:25:55 +01:00
|
|
|
#if !NETSTACK_CONF_BRIDGE_MODE
|
|
|
|
/* If NETSTACK_CONF_BRIDGE_MODE is set, assume PACKETBUF_ADDR_SENDER is already set. */
|
2013-12-12 23:58:52 +01:00
|
|
|
packetbuf_set_addr(PACKETBUF_ADDR_SENDER, &linkaddr_node_addr);
|
2011-03-21 22:25:55 +01:00
|
|
|
#endif
|
2014-08-05 13:49:05 +02:00
|
|
|
if(packetbuf_holds_broadcast()) {
|
2010-01-31 19:44:23 +01:00
|
|
|
is_broadcast = 1;
|
|
|
|
PRINTDEBUG("cxmac: send broadcast\n");
|
|
|
|
} else {
|
2014-12-01 21:02:57 +01:00
|
|
|
#if NETSTACK_CONF_WITH_IPV6
|
2010-01-31 19:44:23 +01:00
|
|
|
PRINTDEBUG("cxmac: send unicast to %02x%02x:%02x%02x:%02x%02x:%02x%02x\n",
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[0],
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[1],
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[2],
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[3],
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[4],
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[5],
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[6],
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[7]);
|
2007-09-18 12:35:39 +02:00
|
|
|
#else
|
2010-01-31 19:44:23 +01:00
|
|
|
PRINTDEBUG("cxmac: send unicast to %u.%u\n",
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[0],
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[1]);
|
2014-12-01 21:02:57 +01:00
|
|
|
#endif /* NETSTACK_CONF_WITH_IPV6 */
|
2010-01-31 19:44:23 +01:00
|
|
|
}
|
2010-03-01 14:30:21 +01:00
|
|
|
len = NETSTACK_FRAMER.create();
|
2010-01-31 19:44:23 +01:00
|
|
|
strobe_len = len + sizeof(struct cxmac_hdr);
|
2012-01-01 03:00:21 +01:00
|
|
|
if(len < 0 || strobe_len > (int)sizeof(strobe)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
/* Failed to send */
|
|
|
|
PRINTF("cxmac: send failed, too large header\n");
|
|
|
|
return MAC_TX_ERR_FATAL;
|
|
|
|
}
|
|
|
|
memcpy(strobe, packetbuf_hdrptr(), len);
|
|
|
|
strobe[len] = DISPATCH; /* dispatch */
|
|
|
|
strobe[len + 1] = TYPE_STROBE; /* type */
|
|
|
|
|
2009-03-12 22:58:20 +01:00
|
|
|
packetbuf_compact();
|
2010-01-31 19:44:23 +01:00
|
|
|
packet = queuebuf_new_from_packetbuf();
|
|
|
|
if(packet == NULL) {
|
|
|
|
/* No buffer available */
|
|
|
|
PRINTF("cxmac: send failed, no queue buffer available (of %u)\n",
|
|
|
|
QUEUEBUF_CONF_NUM);
|
|
|
|
return MAC_TX_ERR;
|
|
|
|
}
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2015-05-06 14:34:29 +02:00
|
|
|
#if WITH_STREAMING && PACKETBUF_WITH_PACKET_TYPE
|
2010-01-31 19:44:23 +01:00
|
|
|
if(is_streaming == 1 &&
|
2013-12-12 23:58:52 +01:00
|
|
|
(linkaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
2010-01-31 19:44:23 +01:00
|
|
|
&is_streaming_to) ||
|
2013-12-12 23:58:52 +01:00
|
|
|
linkaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
2010-01-31 19:44:23 +01:00
|
|
|
&is_streaming_to_too))) {
|
|
|
|
is_already_streaming = 1;
|
|
|
|
}
|
|
|
|
if(packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) ==
|
|
|
|
PACKETBUF_ATTR_PACKET_TYPE_STREAM) {
|
|
|
|
is_streaming = 1;
|
2013-12-12 23:58:52 +01:00
|
|
|
if(linkaddr_cmp(&is_streaming_to, &linkaddr_null)) {
|
|
|
|
linkaddr_copy(&is_streaming_to, packetbuf_addr(PACKETBUF_ADDR_RECEIVER));
|
|
|
|
} else if(!linkaddr_cmp(&is_streaming_to, packetbuf_addr(PACKETBUF_ADDR_RECEIVER))) {
|
|
|
|
linkaddr_copy(&is_streaming_to_too, packetbuf_addr(PACKETBUF_ADDR_RECEIVER));
|
2010-01-31 19:44:23 +01:00
|
|
|
}
|
|
|
|
stream_until = RTIMER_NOW() + DEFAULT_STREAM_TIME;
|
|
|
|
}
|
|
|
|
#endif /* WITH_STREAMING */
|
|
|
|
|
|
|
|
off();
|
|
|
|
|
|
|
|
#if WITH_ENCOUNTER_OPTIMIZATION
|
|
|
|
/* We go through the list of encounters to find if we have recorded
|
|
|
|
an encounter with this particular neighbor. If so, we can compute
|
|
|
|
the time for the next expected encounter and setup a ctimer to
|
|
|
|
switch on the radio just before the encounter. */
|
2010-06-15 21:22:25 +02:00
|
|
|
for(e = list_head(encounter_list); e != NULL; e = list_item_next(e)) {
|
2013-12-12 23:58:52 +01:00
|
|
|
const linkaddr_t *neighbor = packetbuf_addr(PACKETBUF_ADDR_RECEIVER);
|
2010-01-31 19:44:23 +01:00
|
|
|
|
2013-12-12 23:58:52 +01:00
|
|
|
if(linkaddr_cmp(neighbor, &e->neighbor)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
rtimer_clock_t wait, now, expected;
|
|
|
|
|
|
|
|
/* We expect encounters to happen every DEFAULT_PERIOD time
|
|
|
|
units. The next expected encounter is at time e->time +
|
|
|
|
DEFAULT_PERIOD. To compute a relative offset, we subtract
|
|
|
|
with clock_time(). Because we are only interested in turning
|
|
|
|
on the radio within the DEFAULT_PERIOD period, we compute the
|
|
|
|
waiting time with modulo DEFAULT_PERIOD. */
|
|
|
|
|
|
|
|
now = RTIMER_NOW();
|
|
|
|
wait = ((rtimer_clock_t)(e->time - now)) % (DEFAULT_PERIOD);
|
|
|
|
expected = now + wait - 2 * DEFAULT_ON_TIME;
|
|
|
|
|
2015-05-06 14:34:29 +02:00
|
|
|
#if WITH_ACK_OPTIMIZATION && PACKETBUF_WITH_PACKET_TYPE
|
2010-01-31 19:44:23 +01:00
|
|
|
/* Wait until the receiver is expected to be awake */
|
|
|
|
if(packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) !=
|
|
|
|
PACKETBUF_ATTR_PACKET_TYPE_ACK &&
|
|
|
|
is_streaming == 0) {
|
|
|
|
/* Do not wait if we are sending an ACK, because then the
|
|
|
|
receiver will already be awake. */
|
|
|
|
while(RTIMER_CLOCK_LT(RTIMER_NOW(), expected));
|
|
|
|
}
|
|
|
|
#else /* WITH_ACK_OPTIMIZATION */
|
|
|
|
/* Wait until the receiver is expected to be awake */
|
|
|
|
while(RTIMER_CLOCK_LT(RTIMER_NOW(), expected));
|
|
|
|
#endif /* WITH_ACK_OPTIMIZATION */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* WITH_ENCOUNTER_OPTIMIZATION */
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* By setting we_are_sending to one, we ensure that the rtimer
|
|
|
|
powercycle interrupt do not interfere with us sending the packet. */
|
|
|
|
we_are_sending = 1;
|
|
|
|
|
|
|
|
t0 = RTIMER_NOW();
|
2007-09-18 12:35:39 +02:00
|
|
|
strobes = 0;
|
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
LEDS_ON(LEDS_BLUE);
|
|
|
|
|
|
|
|
/* Send a train of strobes until the receiver answers with an ACK. */
|
|
|
|
|
|
|
|
/* Turn on the radio to listen for the strobe ACK. */
|
|
|
|
on();
|
|
|
|
collisions = 0;
|
|
|
|
if(!is_already_streaming) {
|
|
|
|
watchdog_stop();
|
|
|
|
got_strobe_ack = 0;
|
|
|
|
t = RTIMER_NOW();
|
|
|
|
for(strobes = 0, collisions = 0;
|
|
|
|
got_strobe_ack == 0 && collisions == 0 &&
|
|
|
|
RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + cxmac_config.strobe_time);
|
|
|
|
strobes++) {
|
|
|
|
|
|
|
|
while(got_strobe_ack == 0 &&
|
|
|
|
RTIMER_CLOCK_LT(RTIMER_NOW(), t + cxmac_config.strobe_wait_time)) {
|
|
|
|
rtimer_clock_t now = RTIMER_NOW();
|
2010-06-15 21:22:25 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* See if we got an ACK */
|
|
|
|
packetbuf_clear();
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
len = NETSTACK_RADIO.read(packetbuf_dataptr(), PACKETBUF_SIZE);
|
2010-01-31 19:44:23 +01:00
|
|
|
if(len > 0) {
|
|
|
|
packetbuf_set_datalen(len);
|
2012-01-01 03:00:21 +01:00
|
|
|
if(NETSTACK_FRAMER.parse() >= 0) {
|
2010-01-31 19:44:23 +01:00
|
|
|
hdr = packetbuf_dataptr();
|
2012-05-30 17:58:45 +02:00
|
|
|
is_dispatch = hdr->dispatch == DISPATCH;
|
|
|
|
is_strobe_ack = hdr->type == TYPE_STROBE_ACK;
|
|
|
|
if(is_dispatch && is_strobe_ack) {
|
2013-12-12 23:58:52 +01:00
|
|
|
if(linkaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
|
|
|
&linkaddr_node_addr)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
/* We got an ACK from the receiver, so we can immediately send
|
|
|
|
the packet. */
|
|
|
|
got_strobe_ack = 1;
|
|
|
|
encounter_time = now;
|
|
|
|
} else {
|
|
|
|
PRINTDEBUG("cxmac: strobe ack for someone else\n");
|
|
|
|
}
|
|
|
|
} else /*if(hdr->dispatch == DISPATCH && hdr->type == TYPE_STROBE)*/ {
|
|
|
|
PRINTDEBUG("cxmac: strobe from someone else\n");
|
|
|
|
collisions++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
PRINTF("cxmac: send failed to parse %u\n", len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t = RTIMER_NOW();
|
2010-06-15 21:22:25 +02:00
|
|
|
/* Send the strobe packet. */
|
2010-01-31 19:44:23 +01:00
|
|
|
if(got_strobe_ack == 0 && collisions == 0) {
|
|
|
|
if(is_broadcast) {
|
|
|
|
#if WITH_STROBE_BROADCAST
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_RADIO.send(strobe, strobe_len);
|
2007-09-18 12:35:39 +02:00
|
|
|
#else
|
2010-01-31 19:44:23 +01:00
|
|
|
/* restore the packet to send */
|
|
|
|
queuebuf_to_packetbuf(packet);
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_RADIO.send(packetbuf_hdrptr(), packetbuf_totlen());
|
2007-09-18 12:35:39 +02:00
|
|
|
#endif
|
2010-01-31 19:44:23 +01:00
|
|
|
off();
|
2007-09-18 12:35:39 +02:00
|
|
|
} else {
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_RADIO.send(strobe, strobe_len);
|
2010-06-15 21:22:25 +02:00
|
|
|
#if 0
|
2010-01-31 19:44:23 +01:00
|
|
|
/* Turn off the radio for a while to let the other side
|
|
|
|
respond. We don't need to keep our radio on when we know
|
|
|
|
that the other side needs some time to produce a reply. */
|
|
|
|
off();
|
2010-08-01 23:18:07 +02:00
|
|
|
rtimer_clock_t wt = RTIMER_NOW();
|
2010-01-31 19:44:23 +01:00
|
|
|
while(RTIMER_CLOCK_LT(RTIMER_NOW(), wt + WAIT_TIME_BEFORE_STROBE_ACK));
|
|
|
|
#endif /* 0 */
|
|
|
|
on();
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-01-31 19:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#if WITH_ACK_OPTIMIZATION
|
|
|
|
/* If we have received the strobe ACK, and we are sending a packet
|
|
|
|
that will need an upper layer ACK (as signified by the
|
|
|
|
PACKETBUF_ATTR_RELIABLE packet attribute), we keep the radio on. */
|
2015-05-06 14:10:19 +02:00
|
|
|
if(got_strobe_ack && (
|
2014-12-01 15:17:00 +01:00
|
|
|
#if NETSTACK_CONF_WITH_RIME
|
2015-05-06 14:10:19 +02:00
|
|
|
packetbuf_attr(PACKETBUF_ATTR_RELIABLE) ||
|
2014-12-01 15:17:00 +01:00
|
|
|
packetbuf_attr(PACKETBUF_ATTR_ERELIABLE) ||
|
|
|
|
#endif /* NETSTACK_CONF_WITH_RIME */
|
2015-05-06 14:34:29 +02:00
|
|
|
#if PACKETBUF_WITH_PACKET_TYPE
|
2010-01-31 19:44:23 +01:00
|
|
|
packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) ==
|
2015-05-06 14:34:29 +02:00
|
|
|
PACKETBUF_ATTR_PACKET_TYPE_STREAM ||
|
|
|
|
#endif
|
|
|
|
0)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
on(); /* Wait for ACK packet */
|
|
|
|
waiting_for_packet = 1;
|
|
|
|
} else {
|
|
|
|
off();
|
|
|
|
}
|
|
|
|
#else /* WITH_ACK_OPTIMIZATION */
|
|
|
|
off();
|
|
|
|
#endif /* WITH_ACK_OPTIMIZATION */
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* restore the packet to send */
|
|
|
|
queuebuf_to_packetbuf(packet);
|
|
|
|
queuebuf_free(packet);
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* Send the data packet. */
|
|
|
|
if((is_broadcast || got_strobe_ack || is_streaming) && collisions == 0) {
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_RADIO.send(packetbuf_hdrptr(), packetbuf_totlen());
|
2010-01-31 19:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#if WITH_ENCOUNTER_OPTIMIZATION
|
|
|
|
if(got_strobe_ack && !is_streaming) {
|
|
|
|
register_encounter(packetbuf_addr(PACKETBUF_ADDR_RECEIVER), encounter_time);
|
|
|
|
}
|
|
|
|
#endif /* WITH_ENCOUNTER_OPTIMIZATION */
|
|
|
|
watchdog_start();
|
|
|
|
|
|
|
|
PRINTF("cxmac: send (strobes=%u,len=%u,%s), done\n", strobes,
|
|
|
|
packetbuf_totlen(), got_strobe_ack ? "ack" : "no ack");
|
|
|
|
|
|
|
|
#if CXMAC_CONF_COMPOWER
|
|
|
|
/* Accumulate the power consumption for the packet transmission. */
|
|
|
|
compower_accumulate(¤t_packet);
|
|
|
|
|
|
|
|
/* Convert the accumulated power consumption for the transmitted
|
|
|
|
packet to packet attributes so that the higher levels can keep
|
|
|
|
track of the amount of energy spent on transmitting the
|
|
|
|
packet. */
|
|
|
|
compower_attrconv(¤t_packet);
|
|
|
|
|
|
|
|
/* Clear the accumulated power consumption so that it is ready for
|
|
|
|
the next packet. */
|
|
|
|
compower_clear(¤t_packet);
|
|
|
|
#endif /* CXMAC_CONF_COMPOWER */
|
2007-09-18 12:35:39 +02:00
|
|
|
|
|
|
|
we_are_sending = 0;
|
2010-01-31 19:44:23 +01:00
|
|
|
|
|
|
|
LEDS_OFF(LEDS_BLUE);
|
|
|
|
if(collisions == 0) {
|
2010-02-03 02:17:32 +01:00
|
|
|
if(!is_broadcast && !got_strobe_ack) {
|
|
|
|
return MAC_TX_NOACK;
|
|
|
|
} else {
|
|
|
|
return MAC_TX_OK;
|
|
|
|
}
|
2010-01-31 19:44:23 +01:00
|
|
|
} else {
|
|
|
|
someone_is_sending++;
|
|
|
|
return MAC_TX_COLLISION;
|
|
|
|
}
|
2007-09-18 12:35:39 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
static void
|
|
|
|
qsend_packet(mac_callback_t sent, void *ptr)
|
2007-09-18 12:35:39 +02:00
|
|
|
{
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
int ret;
|
2007-09-18 12:35:39 +02:00
|
|
|
if(someone_is_sending) {
|
2010-01-31 19:44:23 +01:00
|
|
|
PRINTF("cxmac: should queue packet, now just dropping %d %d %d %d.\n",
|
|
|
|
waiting_for_packet, someone_is_sending, we_are_sending, radio_is_on);
|
|
|
|
RIMESTATS_ADD(sendingdrop);
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
ret = MAC_TX_COLLISION;
|
2007-09-18 12:35:39 +02:00
|
|
|
} else {
|
2010-01-31 19:44:23 +01:00
|
|
|
PRINTF("cxmac: send immediately.\n");
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
ret = send_packet();
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
|
|
|
|
mac_call_sent_callback(sent, ptr, ret, 1);
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2011-10-03 15:17:30 +02:00
|
|
|
static void
|
2011-09-27 16:05:30 +02:00
|
|
|
qsend_list(mac_callback_t sent, void *ptr, struct rdc_buf_list *buf_list)
|
|
|
|
{
|
|
|
|
if(buf_list != NULL) {
|
|
|
|
queuebuf_to_packetbuf(buf_list->buf);
|
|
|
|
qsend_packet(sent, ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2007-09-18 12:35:39 +02:00
|
|
|
static void
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
input_packet(void)
|
2007-09-18 12:35:39 +02:00
|
|
|
{
|
2010-01-31 19:44:23 +01:00
|
|
|
struct cxmac_hdr *hdr;
|
|
|
|
|
2012-01-01 03:00:21 +01:00
|
|
|
if(NETSTACK_FRAMER.parse() >= 0) {
|
2009-03-12 22:58:20 +01:00
|
|
|
hdr = packetbuf_dataptr();
|
2010-01-31 19:44:23 +01:00
|
|
|
|
|
|
|
if(hdr->dispatch != DISPATCH) {
|
|
|
|
someone_is_sending = 0;
|
2013-12-12 23:58:52 +01:00
|
|
|
if(linkaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
|
|
|
&linkaddr_node_addr) ||
|
|
|
|
linkaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
|
|
|
&linkaddr_null)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
/* This is a regular packet that is destined to us or to the
|
|
|
|
broadcast address. */
|
|
|
|
|
|
|
|
/* We have received the final packet, so we can go back to being
|
|
|
|
asleep. */
|
|
|
|
off();
|
|
|
|
|
|
|
|
#if CXMAC_CONF_COMPOWER
|
|
|
|
/* Accumulate the power consumption for the packet reception. */
|
|
|
|
compower_accumulate(¤t_packet);
|
|
|
|
/* Convert the accumulated power consumption for the received
|
|
|
|
packet to packet attributes so that the higher levels can
|
|
|
|
keep track of the amount of energy spent on receiving the
|
|
|
|
packet. */
|
|
|
|
compower_attrconv(¤t_packet);
|
|
|
|
|
|
|
|
/* Clear the accumulated power consumption so that it is ready
|
|
|
|
for the next packet. */
|
|
|
|
compower_clear(¤t_packet);
|
|
|
|
#endif /* CXMAC_CONF_COMPOWER */
|
|
|
|
|
|
|
|
waiting_for_packet = 0;
|
|
|
|
|
|
|
|
PRINTDEBUG("cxmac: data(%u)\n", packetbuf_datalen());
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_MAC.input();
|
|
|
|
return;
|
2010-01-31 19:44:23 +01:00
|
|
|
} else {
|
|
|
|
PRINTDEBUG("cxmac: data not for us\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if(hdr->type == TYPE_STROBE) {
|
|
|
|
someone_is_sending = 2;
|
|
|
|
|
2013-12-12 23:58:52 +01:00
|
|
|
if(linkaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
|
|
|
&linkaddr_node_addr)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
/* This is a strobe packet for us. */
|
|
|
|
|
|
|
|
/* If the sender address is someone else, we should
|
|
|
|
acknowledge the strobe and wait for the packet. By using
|
|
|
|
the same address as both sender and receiver, we flag the
|
|
|
|
message is a strobe ack. */
|
|
|
|
hdr->type = TYPE_STROBE_ACK;
|
|
|
|
packetbuf_set_addr(PACKETBUF_ADDR_RECEIVER,
|
|
|
|
packetbuf_addr(PACKETBUF_ADDR_SENDER));
|
2013-12-12 23:58:52 +01:00
|
|
|
packetbuf_set_addr(PACKETBUF_ADDR_SENDER, &linkaddr_node_addr);
|
2010-01-31 19:44:23 +01:00
|
|
|
packetbuf_compact();
|
2012-01-01 03:00:21 +01:00
|
|
|
if(NETSTACK_FRAMER.create() >= 0) {
|
2010-01-31 19:44:23 +01:00
|
|
|
/* We turn on the radio in anticipation of the incoming
|
|
|
|
packet. */
|
|
|
|
someone_is_sending = 1;
|
|
|
|
waiting_for_packet = 1;
|
|
|
|
on();
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_RADIO.send(packetbuf_hdrptr(), packetbuf_totlen());
|
2010-01-31 19:44:23 +01:00
|
|
|
PRINTDEBUG("cxmac: send strobe ack %u\n", packetbuf_totlen());
|
|
|
|
} else {
|
|
|
|
PRINTF("cxmac: failed to send strobe ack\n");
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
2013-12-12 23:58:52 +01:00
|
|
|
} else if(linkaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
|
|
|
&linkaddr_null)) {
|
2010-01-31 19:44:23 +01:00
|
|
|
/* If the receiver address is null, the strobe is sent to
|
|
|
|
prepare for an incoming broadcast packet. If this is the
|
|
|
|
case, we turn on the radio and wait for the incoming
|
|
|
|
broadcast packet. */
|
|
|
|
waiting_for_packet = 1;
|
|
|
|
on();
|
|
|
|
} else {
|
|
|
|
PRINTDEBUG("cxmac: strobe not for us\n");
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
2010-01-31 19:44:23 +01:00
|
|
|
|
|
|
|
/* We are done processing the strobe and we therefore return
|
|
|
|
to the caller. */
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
return;
|
2010-01-31 19:44:23 +01:00
|
|
|
#if CXMAC_CONF_ANNOUNCEMENTS
|
|
|
|
} else if(hdr->type == TYPE_ANNOUNCEMENT) {
|
|
|
|
packetbuf_hdrreduce(sizeof(struct cxmac_hdr));
|
|
|
|
parse_announcements(packetbuf_addr(PACKETBUF_ADDR_SENDER));
|
|
|
|
#endif /* CXMAC_CONF_ANNOUNCEMENTS */
|
|
|
|
} else if(hdr->type == TYPE_STROBE_ACK) {
|
|
|
|
PRINTDEBUG("cxmac: stray strobe ack\n");
|
2007-09-18 12:35:39 +02:00
|
|
|
} else {
|
2010-06-15 21:22:25 +02:00
|
|
|
PRINTF("cxmac: unknown type %u (%u)\n", hdr->type,
|
|
|
|
packetbuf_datalen());
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
2010-01-31 19:44:23 +01:00
|
|
|
} else {
|
|
|
|
PRINTF("cxmac: failed to parse (%u)\n", packetbuf_totlen());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#if CXMAC_CONF_ANNOUNCEMENTS
|
|
|
|
static void
|
|
|
|
send_announcement(void *ptr)
|
|
|
|
{
|
|
|
|
struct cxmac_hdr *hdr;
|
|
|
|
int announcement_len;
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
/* Set up the probe header. */
|
|
|
|
packetbuf_clear();
|
|
|
|
hdr = packetbuf_dataptr();
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
announcement_len = format_announcement((char *)hdr +
|
|
|
|
sizeof(struct cxmac_hdr));
|
|
|
|
|
|
|
|
if(announcement_len > 0) {
|
|
|
|
packetbuf_set_datalen(sizeof(struct cxmac_hdr) + announcement_len);
|
|
|
|
hdr->dispatch = DISPATCH;
|
|
|
|
hdr->type = TYPE_ANNOUNCEMENT;
|
|
|
|
|
2013-12-12 23:58:52 +01:00
|
|
|
packetbuf_set_addr(PACKETBUF_ADDR_SENDER, &linkaddr_node_addr);
|
|
|
|
packetbuf_set_addr(PACKETBUF_ADDR_RECEIVER, &linkaddr_null);
|
2010-01-31 19:44:23 +01:00
|
|
|
packetbuf_set_attr(PACKETBUF_ATTR_RADIO_TXPOWER, announcement_radio_txpower);
|
2012-01-01 03:00:21 +01:00
|
|
|
if(NETSTACK_FRAMER.create() >= 0) {
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
NETSTACK_RADIO.send(packetbuf_hdrptr(), packetbuf_totlen());
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
|
|
|
}
|
2010-01-31 19:44:23 +01:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
cycle_announcement(void *ptr)
|
|
|
|
{
|
|
|
|
ctimer_set(&announcement_ctimer, ANNOUNCEMENT_TIME,
|
|
|
|
send_announcement, NULL);
|
|
|
|
ctimer_set(&announcement_cycle_ctimer, ANNOUNCEMENT_PERIOD,
|
|
|
|
cycle_announcement, NULL);
|
|
|
|
if(is_listening > 0) {
|
|
|
|
is_listening--;
|
|
|
|
/* printf("is_listening %d\n", is_listening);*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
listen_callback(int periods)
|
|
|
|
{
|
|
|
|
is_listening = periods + 1;
|
|
|
|
}
|
|
|
|
#endif /* CXMAC_CONF_ANNOUNCEMENTS */
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
cxmac_set_announcement_radio_txpower(int txpower)
|
|
|
|
{
|
|
|
|
#if CXMAC_CONF_ANNOUNCEMENTS
|
|
|
|
announcement_radio_txpower = txpower;
|
|
|
|
#endif /* CXMAC_CONF_ANNOUNCEMENTS */
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
void
|
|
|
|
cxmac_init(void)
|
2007-09-18 12:35:39 +02:00
|
|
|
{
|
|
|
|
radio_is_on = 0;
|
2010-01-31 19:44:23 +01:00
|
|
|
waiting_for_packet = 0;
|
2007-09-18 12:35:39 +02:00
|
|
|
PT_INIT(&pt);
|
2010-01-31 19:44:23 +01:00
|
|
|
/* rtimer_set(&rt, RTIMER_NOW() + cxmac_config.off_time, 1,
|
|
|
|
(void (*)(struct rtimer *, void *))powercycle, NULL);*/
|
2007-09-18 12:35:39 +02:00
|
|
|
|
2010-01-31 19:44:23 +01:00
|
|
|
cxmac_is_on = 1;
|
|
|
|
|
|
|
|
#if WITH_ENCOUNTER_OPTIMIZATION
|
|
|
|
list_init(encounter_list);
|
|
|
|
memb_init(&encounter_memb);
|
|
|
|
#endif /* WITH_ENCOUNTER_OPTIMIZATION */
|
|
|
|
|
|
|
|
#if CXMAC_CONF_ANNOUNCEMENTS
|
|
|
|
announcement_register_listen_callback(listen_callback);
|
|
|
|
ctimer_set(&announcement_cycle_ctimer, ANNOUNCEMENT_TIME,
|
|
|
|
cycle_announcement, NULL);
|
|
|
|
#endif /* CXMAC_CONF_ANNOUNCEMENTS */
|
|
|
|
|
|
|
|
CSCHEDULE_POWERCYCLE(DEFAULT_OFF_TIME);
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
2010-01-31 19:44:23 +01:00
|
|
|
turn_on(void)
|
2007-09-18 12:35:39 +02:00
|
|
|
{
|
2010-01-31 19:44:23 +01:00
|
|
|
cxmac_is_on = 1;
|
|
|
|
/* rtimer_set(&rt, RTIMER_NOW() + cxmac_config.off_time, 1,
|
|
|
|
(void (*)(struct rtimer *, void *))powercycle, NULL);*/
|
|
|
|
CSCHEDULE_POWERCYCLE(DEFAULT_OFF_TIME);
|
|
|
|
return 1;
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
2010-01-31 19:44:23 +01:00
|
|
|
turn_off(int keep_radio_on)
|
2007-09-18 12:35:39 +02:00
|
|
|
{
|
2010-01-31 19:44:23 +01:00
|
|
|
cxmac_is_on = 0;
|
2009-06-22 13:14:11 +02:00
|
|
|
if(keep_radio_on) {
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
return NETSTACK_RADIO.on();
|
2009-06-22 13:14:11 +02:00
|
|
|
} else {
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
return NETSTACK_RADIO.off();
|
2007-09-18 12:35:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2010-01-31 19:44:23 +01:00
|
|
|
static unsigned short
|
|
|
|
channel_check_interval(void)
|
|
|
|
{
|
|
|
|
return (1ul * CLOCK_SECOND * DEFAULT_PERIOD) / RTIMER_ARCH_SECOND;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2010-02-23 21:09:11 +01:00
|
|
|
const struct rdc_driver cxmac_driver =
|
2007-09-18 12:35:39 +02:00
|
|
|
{
|
2010-01-31 19:44:23 +01:00
|
|
|
"CX-MAC",
|
2009-06-22 13:14:11 +02:00
|
|
|
cxmac_init,
|
2010-01-31 19:44:23 +01:00
|
|
|
qsend_packet,
|
2011-09-27 16:05:30 +02:00
|
|
|
qsend_list,
|
A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:
* Separates the Contiki low-layer network stack into four layers:
network (e.g. sicslowpan / rime), Medium Access Control MAC
(e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
that specify what mechanism/protocol/driver to use at the four
layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
the fate of a transmitted packet: if the packet was not possible to
transmit, the cause of the failure is reported, and if the packets
was successfully transmitted, the number of tries before it was
finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
efficient radio duty cycling protocols: channel check, pending
packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
#defines.
2010-02-18 22:48:39 +01:00
|
|
|
input_packet,
|
2010-01-31 19:44:23 +01:00
|
|
|
turn_on,
|
|
|
|
turn_off,
|
|
|
|
channel_check_interval,
|
2007-09-18 12:35:39 +02:00
|
|
|
};
|