Two major changes:
* Low-power streaming. Experimental support for a low-power mode which allows rapid exchange of packets with a 16% duty cycle. Does not seem to function correctly yet though. * Phase locking. When the phase of a neighbor has been detected, the sender assumes that the neighbor will keeps it phase and does not send more strobes than necessary to hit the receiver's channel check - even if the receiver does not acknowledge the reception of the strobes when it should have been awake. Instead, the sender stops strobing and tries again at a later time.
This commit is contained in:
parent
0035a70537
commit
7bab9316da
3 changed files with 214 additions and 202 deletions
|
@ -28,7 +28,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: contikimac.c,v 1.11 2010/03/14 12:13:54 oliverschmidt Exp $
|
* $Id: contikimac.c,v 1.12 2010/03/14 22:59:23 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#ifndef WITH_ACK_OPTIMIZATION
|
#ifndef WITH_ACK_OPTIMIZATION
|
||||||
#define WITH_ACK_OPTIMIZATION 0
|
#define WITH_ACK_OPTIMIZATION 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef WITH_PHASE_OPTIMIZATION
|
#ifndef WITH_PHASE_OPTIMIZATION
|
||||||
#define WITH_PHASE_OPTIMIZATION 1
|
#define WITH_PHASE_OPTIMIZATION 1
|
||||||
|
@ -97,10 +97,14 @@ struct announcement_msg {
|
||||||
#define CYCLE_TIME (RTIMER_ARCH_SECOND / MAC_CHANNEL_CHECK_RATE)
|
#define CYCLE_TIME (RTIMER_ARCH_SECOND / MAC_CHANNEL_CHECK_RATE)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define MAX_PHASE_STROBES 8
|
||||||
|
|
||||||
#define CCA_COUNT_MAX 2
|
#define CCA_COUNT_MAX 2
|
||||||
#define CCA_CHECK_TIME RTIMER_ARCH_SECOND / 8192
|
#define CCA_CHECK_TIME RTIMER_ARCH_SECOND / 8192
|
||||||
#define CCA_SLEEP_TIME RTIMER_ARCH_SECOND / 2000 + CCA_CHECK_TIME
|
#define CCA_SLEEP_TIME RTIMER_ARCH_SECOND / 2000 + CCA_CHECK_TIME
|
||||||
#define CHECK_TIME (CCA_COUNT_MAX * (CCA_CHECK_TIME + CCA_SLEEP_TIME))
|
#define CHECK_TIME (CCA_COUNT_MAX * (CCA_CHECK_TIME + CCA_SLEEP_TIME))
|
||||||
|
|
||||||
|
#define STREAM_CCA_COUNT (CYCLE_TIME / (CCA_SLEEP_TIME + CCA_CHECK_TIME) - CCA_COUNT_MAX)
|
||||||
|
|
||||||
#define INTER_PACKET_INTERVAL RTIMER_ARCH_SECOND / 2500
|
#define INTER_PACKET_INTERVAL RTIMER_ARCH_SECOND / 2500
|
||||||
#define AFTER_ACK_DETECTECT_WAIT_TIME RTIMER_ARCH_SECOND / 1500
|
#define AFTER_ACK_DETECTECT_WAIT_TIME RTIMER_ARCH_SECOND / 1500
|
||||||
|
@ -166,30 +170,16 @@ PHASE_LIST(phase_list, MAX_PHASE_NEIGHBORS);
|
||||||
|
|
||||||
#endif /* WITH_PHASE_OPTIMIZATION */
|
#endif /* WITH_PHASE_OPTIMIZATION */
|
||||||
|
|
||||||
static uint8_t is_streaming;
|
static volatile uint8_t is_streaming;
|
||||||
static rimeaddr_t is_streaming_to, is_streaming_to_too;
|
static rimeaddr_t is_streaming_to, is_streaming_to_too;
|
||||||
static rtimer_clock_t stream_until;
|
static volatile rtimer_clock_t stream_until;
|
||||||
|
|
||||||
#define DEFAULT_STREAM_TIME (RTIMER_ARCH_SECOND)
|
#define DEFAULT_STREAM_TIME (2 * RTIMER_ARCH_SECOND / MAC_CHANNEL_CHECK_RATE)
|
||||||
|
|
||||||
#ifndef MIN
|
#ifndef MIN
|
||||||
#define MIN(a, b) ((a) < (b)? (a) : (b))
|
#define MIN(a, b) ((a) < (b)? (a) : (b))
|
||||||
#endif /* MIN */
|
#endif /* MIN */
|
||||||
|
|
||||||
static volatile uint8_t packet_indication_flag;
|
|
||||||
static volatile uint16_t packet_indicated_but_not_received,
|
|
||||||
packet_indicated_but_not_received_clear_third_time;
|
|
||||||
|
|
||||||
volatile uint16_t
|
|
||||||
packet_indicated_but_not_received_clear_second_time;
|
|
||||||
|
|
||||||
struct cca_checks_stats {
|
|
||||||
volatile char check[CCA_COUNT_MAX];
|
|
||||||
};
|
|
||||||
|
|
||||||
#define LATEST_CCA_CHECKS_NUM 16
|
|
||||||
static volatile struct cca_checks_stats cca_checks[LATEST_CCA_CHECKS_NUM];
|
|
||||||
static volatile struct cca_checks_stats *latest_cca_check = &cca_checks[LATEST_CCA_CHECKS_NUM - 1];
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static void
|
static void
|
||||||
|
@ -204,7 +194,7 @@ on(void)
|
||||||
static void
|
static void
|
||||||
off(void)
|
off(void)
|
||||||
{
|
{
|
||||||
if(contikimac_is_on && radio_is_on != 0 && is_listening == 0 && is_streaming == 0) {
|
if(contikimac_is_on && radio_is_on != 0 && is_listening == 0) {
|
||||||
radio_is_on = 0;
|
radio_is_on = 0;
|
||||||
NETSTACK_RADIO.off();
|
NETSTACK_RADIO.off();
|
||||||
}
|
}
|
||||||
|
@ -276,74 +266,69 @@ powercycle(struct rtimer *t, void *ptr)
|
||||||
while(1) {
|
while(1) {
|
||||||
static uint8_t packet_seen;
|
static uint8_t packet_seen;
|
||||||
static rtimer_clock_t t0, cycle_start;
|
static rtimer_clock_t t0, cycle_start;
|
||||||
static uint8_t count;
|
static uint8_t count, count_max;
|
||||||
static uint8_t clear_second_time, clear_third_time;
|
|
||||||
|
|
||||||
cycle_start = RTIMER_NOW();
|
cycle_start = RTIMER_NOW();
|
||||||
|
|
||||||
for(count = 1; count < LATEST_CCA_CHECKS_NUM; ++count) {
|
|
||||||
cca_checks[count - 1] = cca_checks[count];
|
|
||||||
}
|
|
||||||
|
|
||||||
latest_cca_check->check[0] =
|
|
||||||
latest_cca_check->check[1] = 2;
|
|
||||||
|
|
||||||
packet_seen = 0;
|
packet_seen = 0;
|
||||||
clear_second_time = clear_third_time = 0;
|
count_max = CCA_COUNT_MAX;
|
||||||
if(we_are_sending == 0) {
|
if(is_streaming) {
|
||||||
latest_cca_check->check[0] =
|
count_max = STREAM_CCA_COUNT;
|
||||||
latest_cca_check->check[1] = -1;
|
}
|
||||||
|
do {
|
||||||
for(count = 0; count < CCA_COUNT_MAX; ++count) {
|
for(count = 0; count < CCA_COUNT_MAX; ++count) {
|
||||||
t0 = RTIMER_NOW();
|
t0 = RTIMER_NOW();
|
||||||
powercycle_turn_radio_on();
|
if(we_are_sending == 0) {
|
||||||
|
powercycle_turn_radio_on();
|
||||||
#if NURTIMER
|
#if NURTIMER
|
||||||
while(RTIMER_CLOCK_LT(t0, RTIMER_NOW(), t0 + CCA_CHECK_TIME));
|
while(RTIMER_CLOCK_LT(t0, RTIMER_NOW(), t0 + CCA_CHECK_TIME));
|
||||||
#else
|
#else
|
||||||
while(RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + CCA_CHECK_TIME));
|
while(RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + CCA_CHECK_TIME));
|
||||||
#endif
|
#endif
|
||||||
if(NETSTACK_RADIO.channel_clear() == 0) {
|
|
||||||
latest_cca_check->check[count] = 0;
|
/* Check if a packet is seen in the air. If so, we keep the
|
||||||
packet_indication_flag = 1;
|
radio on for a while (LISTEN_TIME_AFTER_PACKET_DETECTED) to
|
||||||
packet_seen = 1;
|
be able to receive the packet. We also continuously check
|
||||||
break;
|
the radio medium to make sure that we wasn't woken up by a
|
||||||
} else {
|
false positive: a spurious radio interference that was not
|
||||||
latest_cca_check->check[count] = 1;
|
caused by an incoming packet. */
|
||||||
|
if(NETSTACK_RADIO.channel_clear() == 0) {
|
||||||
|
packet_seen = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
powercycle_turn_radio_off();
|
||||||
}
|
}
|
||||||
powercycle_turn_radio_off();
|
|
||||||
schedule_powercycle(t, CCA_SLEEP_TIME + CCA_CHECK_TIME);
|
schedule_powercycle(t, CCA_SLEEP_TIME + CCA_CHECK_TIME);
|
||||||
PT_YIELD(&pt);
|
PT_YIELD(&pt);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 1
|
|
||||||
/* If there were a packet in the air, turn radio on */
|
|
||||||
if(packet_seen) {
|
if(packet_seen) {
|
||||||
static rtimer_clock_t start;
|
static rtimer_clock_t start;
|
||||||
static uint8_t silence_periods, periods;
|
static uint8_t silence_periods, periods;
|
||||||
|
|
||||||
start = RTIMER_NOW();
|
start = RTIMER_NOW();
|
||||||
|
|
||||||
periods = silence_periods = 0;
|
periods = silence_periods = 0;
|
||||||
while(we_are_sending == 0 && radio_is_on &&
|
while(we_are_sending == 0 && radio_is_on &&
|
||||||
RTIMER_CLOCK_LT(RTIMER_NOW(), (start + LISTEN_TIME_AFTER_PACKET_DETECTED))) {
|
RTIMER_CLOCK_LT(RTIMER_NOW(), (start + LISTEN_TIME_AFTER_PACKET_DETECTED))) {
|
||||||
|
|
||||||
/* Check for two consecutive periods of non-activity. If we
|
/* Check for a number of consecutive periods of
|
||||||
see two such periods, we turn the radio off. Also, if a
|
non-activity. If we see two such periods, we turn the
|
||||||
packet has been successfully received (as indicated by
|
radio off. Also, if a packet has been successfully
|
||||||
the NETSTACK_RADIO.pending_packet() function), we stop
|
received (as indicated by the
|
||||||
|
NETSTACK_RADIO.pending_packet() function), we stop
|
||||||
listening. */
|
listening. */
|
||||||
if(NETSTACK_RADIO.channel_clear()) {
|
if(NETSTACK_RADIO.channel_clear()) {
|
||||||
++silence_periods;
|
++silence_periods;
|
||||||
} else {
|
} else {
|
||||||
silence_periods = 0;
|
silence_periods = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
++periods;
|
|
||||||
|
|
||||||
|
++periods;
|
||||||
|
|
||||||
if(NETSTACK_RADIO.receiving_packet()) {
|
if(NETSTACK_RADIO.receiving_packet()) {
|
||||||
silence_periods = 0;
|
silence_periods = 0;
|
||||||
}
|
}
|
||||||
if(silence_periods > 5) {
|
if(silence_periods > 5) {
|
||||||
latest_cca_check->check[count] = -silence_periods;
|
|
||||||
leds_on(LEDS_RED);
|
leds_on(LEDS_RED);
|
||||||
powercycle_turn_radio_off();
|
powercycle_turn_radio_off();
|
||||||
#if CONTIKIMAC_CONF_COMPOWER
|
#if CONTIKIMAC_CONF_COMPOWER
|
||||||
|
@ -354,20 +339,19 @@ powercycle(struct rtimer *t, void *ptr)
|
||||||
}
|
}
|
||||||
if(periods > 10 && !(NETSTACK_RADIO.receiving_packet() ||
|
if(periods > 10 && !(NETSTACK_RADIO.receiving_packet() ||
|
||||||
NETSTACK_RADIO.pending_packet())) {
|
NETSTACK_RADIO.pending_packet())) {
|
||||||
latest_cca_check->check[count] = periods;
|
|
||||||
leds_on(LEDS_GREEN);
|
leds_on(LEDS_GREEN);
|
||||||
powercycle_turn_radio_off();
|
powercycle_turn_radio_off();
|
||||||
#if CONTIKIMAC_CONF_COMPOWER
|
#if CONTIKIMAC_CONF_COMPOWER
|
||||||
compower_accumulate(&compower_idle_activity);
|
compower_accumulate(&compower_idle_activity);
|
||||||
#endif /* CONTIKIMAC_CONF_COMPOWER */
|
#endif /* CONTIKIMAC_CONF_COMPOWER */
|
||||||
|
|
||||||
leds_off(LEDS_GREEN);
|
leds_off(LEDS_GREEN);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if(NETSTACK_RADIO.pending_packet()) {
|
if(NETSTACK_RADIO.pending_packet()) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
schedule_powercycle(t, CCA_CHECK_TIME + CCA_SLEEP_TIME);
|
schedule_powercycle(t, CCA_CHECK_TIME + CCA_SLEEP_TIME);
|
||||||
leds_on(LEDS_BLUE);
|
leds_on(LEDS_BLUE);
|
||||||
PT_YIELD(&pt);
|
PT_YIELD(&pt);
|
||||||
|
@ -375,7 +359,6 @@ powercycle(struct rtimer *t, void *ptr)
|
||||||
}
|
}
|
||||||
if(radio_is_on && !(NETSTACK_RADIO.receiving_packet() &&
|
if(radio_is_on && !(NETSTACK_RADIO.receiving_packet() &&
|
||||||
NETSTACK_RADIO.pending_packet())) {
|
NETSTACK_RADIO.pending_packet())) {
|
||||||
latest_cca_check->check[count] = -78;
|
|
||||||
leds_on(LEDS_RED + LEDS_GREEN);
|
leds_on(LEDS_RED + LEDS_GREEN);
|
||||||
powercycle_turn_radio_off();
|
powercycle_turn_radio_off();
|
||||||
#if CONTIKIMAC_CONF_COMPOWER
|
#if CONTIKIMAC_CONF_COMPOWER
|
||||||
|
@ -383,34 +366,14 @@ powercycle(struct rtimer *t, void *ptr)
|
||||||
#endif /* CONTIKIMAC_CONF_COMPOWER */
|
#endif /* CONTIKIMAC_CONF_COMPOWER */
|
||||||
leds_off(LEDS_RED + LEDS_GREEN);
|
leds_off(LEDS_RED + LEDS_GREEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
#if CONTIKIMAC_CONF_COMPOWER
|
#if CONTIKIMAC_CONF_COMPOWER
|
||||||
compower_accumulate(&compower_idle_activity);
|
compower_accumulate(&compower_idle_activity);
|
||||||
#endif /* CONTIKIMAC_CONF_COMPOWER */
|
#endif /* CONTIKIMAC_CONF_COMPOWER */
|
||||||
}
|
}
|
||||||
#else /* 0 */
|
} while(is_streaming &&
|
||||||
if(packet_seen) {
|
RTIMER_NOW() - cycle_start < CYCLE_TIME - CCA_CHECK_TIME * CCA_COUNT_MAX);
|
||||||
schedule_powercycle(t, LISTEN_TIME);
|
|
||||||
PT_YIELD(&pt);
|
|
||||||
if(!(NETSTACK_RADIO.receiving_packet() ||
|
|
||||||
NETSTACK_RADIO.pending_packet())) {
|
|
||||||
powercycle_turn_radio_off();
|
|
||||||
#if CONTIKIMAC_CONF_COMPOWER
|
|
||||||
compower_accumulate(&compower_idle_activity);
|
|
||||||
#endif /* CONTIKIMAC_CONF_COMPOWER */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif /* 0 */
|
|
||||||
|
|
||||||
/* If the packet indication flag is still set, it means that
|
|
||||||
there was never a packet received by the radio. We increase
|
|
||||||
the packet_indicated_but_not_received counter. */
|
|
||||||
if(packet_indication_flag) {
|
|
||||||
packet_indicated_but_not_received += packet_indication_flag;
|
|
||||||
packet_indication_flag = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(RTIMER_NOW() - cycle_start < CYCLE_TIME) {
|
if(RTIMER_NOW() - cycle_start < CYCLE_TIME) {
|
||||||
schedule_powercycle(t, CYCLE_TIME - (RTIMER_NOW() - cycle_start));
|
schedule_powercycle(t, CYCLE_TIME - (RTIMER_NOW() - cycle_start));
|
||||||
PT_YIELD(&pt);
|
PT_YIELD(&pt);
|
||||||
|
@ -483,53 +446,24 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
{
|
{
|
||||||
rtimer_clock_t t0;
|
rtimer_clock_t t0;
|
||||||
rtimer_clock_t t;
|
rtimer_clock_t t;
|
||||||
rtimer_clock_t encounter_time = 0;
|
rtimer_clock_t encounter_time = 0, last_transmission_time = 0;
|
||||||
|
uint8_t first_transmission = 1;
|
||||||
int strobes;
|
int strobes;
|
||||||
int got_strobe_ack = 0;
|
uint8_t got_strobe_ack = 0;
|
||||||
int len;
|
int len;
|
||||||
int is_broadcast = 0;
|
uint8_t is_broadcast = 0;
|
||||||
int is_reliable = 0;
|
uint8_t is_reliable = 0;
|
||||||
|
uint8_t is_known_receiver = 0;
|
||||||
uint8_t collisions;
|
uint8_t collisions;
|
||||||
int transmit_len;
|
int transmit_len;
|
||||||
int i;
|
int i;
|
||||||
|
int ret;
|
||||||
|
|
||||||
if(packetbuf_totlen() == 0) {
|
if(packetbuf_totlen() == 0) {
|
||||||
PRINTF("contikimac: send_packet data len 0\n");
|
PRINTF("contikimac: send_packet data len 0\n");
|
||||||
return MAC_TX_ERR_FATAL;
|
return MAC_TX_ERR_FATAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#if WITH_PHASE_OPTIMIZATION
|
|
||||||
#if WITH_ACK_OPTIMIZATION
|
|
||||||
/* Wait until the receiver is expected to be awake */
|
|
||||||
if(packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) !=
|
|
||||||
PACKETBUF_ATTR_PACKET_TYPE_ACK && is_streaming == 0) {
|
|
||||||
|
|
||||||
if(phase_wait(&phase_list, packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
|
||||||
CYCLE_TIME, 6 * CHECK_TIME,
|
|
||||||
mac_callback, mac_callback_ptr) == PHASE_DEFERRED) {
|
|
||||||
return MAC_TX_DEFERRED;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#else /* WITH_ACK_OPTIMIZATION */
|
|
||||||
if(is_streaming == 0) {
|
|
||||||
if(phase_wait(&phase_list, packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
|
||||||
CYCLE_TIME, 6 * CHECK_TIME,
|
|
||||||
mac_callback, mac_callback_ptr) == PHASE_DEFERRED) {
|
|
||||||
return MAC_TX_DEFERRED;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif /* WITH_ACK_OPTIMIZATION */
|
|
||||||
#endif /* WITH_PHASE_OPTIMIZATION */
|
|
||||||
|
|
||||||
/* Make sure that the packet is longer or equal to the shorest
|
|
||||||
packet length. */
|
|
||||||
if(packetbuf_totlen() < SHORTEST_PACKET_SIZE) {
|
|
||||||
PRINTF("contikimac: shorter than shortest (%d)\n", packetbuf_totlen());
|
|
||||||
packetbuf_set_datalen(SHORTEST_PACKET_SIZE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Create the MAC header for the data packet. */
|
|
||||||
packetbuf_set_addr(PACKETBUF_ADDR_SENDER, &rimeaddr_node_addr);
|
packetbuf_set_addr(PACKETBUF_ADDR_SENDER, &rimeaddr_node_addr);
|
||||||
if(rimeaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER), &rimeaddr_null)) {
|
if(rimeaddr_cmp(packetbuf_addr(PACKETBUF_ADDR_RECEIVER), &rimeaddr_null)) {
|
||||||
is_broadcast = 1;
|
is_broadcast = 1;
|
||||||
|
@ -545,7 +479,7 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[5],
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[5],
|
||||||
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[6],
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[6],
|
||||||
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[7]);
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[7]);
|
||||||
#else
|
#else /* UIP_CONF_IPV6 */
|
||||||
PRINTDEBUG("contikimac: send unicast to %u.%u\n",
|
PRINTDEBUG("contikimac: send unicast to %u.%u\n",
|
||||||
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[0],
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[0],
|
||||||
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[1]);
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER)->u8[1]);
|
||||||
|
@ -553,6 +487,63 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
}
|
}
|
||||||
is_reliable = packetbuf_attr(PACKETBUF_ATTR_RELIABLE) ||
|
is_reliable = packetbuf_attr(PACKETBUF_ATTR_RELIABLE) ||
|
||||||
packetbuf_attr(PACKETBUF_ATTR_ERELIABLE);
|
packetbuf_attr(PACKETBUF_ATTR_ERELIABLE);
|
||||||
|
|
||||||
|
|
||||||
|
if(WITH_STREAMING) {
|
||||||
|
if(packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) ==
|
||||||
|
PACKETBUF_ATTR_PACKET_TYPE_STREAM) {
|
||||||
|
is_streaming = 1;
|
||||||
|
if(rimeaddr_cmp(&is_streaming_to, &rimeaddr_null)) {
|
||||||
|
rimeaddr_copy(&is_streaming_to,
|
||||||
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER));
|
||||||
|
} else if(!rimeaddr_cmp
|
||||||
|
(&is_streaming_to, packetbuf_addr(PACKETBUF_ADDR_RECEIVER))) {
|
||||||
|
rimeaddr_copy(&is_streaming_to_too,
|
||||||
|
packetbuf_addr(PACKETBUF_ADDR_RECEIVER));
|
||||||
|
}
|
||||||
|
stream_until = RTIMER_NOW() + DEFAULT_STREAM_TIME;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!is_broadcast && !is_streaming) {
|
||||||
|
#if WITH_PHASE_OPTIMIZATION
|
||||||
|
if(WITH_ACK_OPTIMIZATION) {
|
||||||
|
/* Wait until the receiver is expected to be awake */
|
||||||
|
if(packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) !=
|
||||||
|
PACKETBUF_ATTR_PACKET_TYPE_ACK) {
|
||||||
|
|
||||||
|
ret = phase_wait(&phase_list, packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
||||||
|
CYCLE_TIME, 7 * CHECK_TIME,
|
||||||
|
mac_callback, mac_callback_ptr);
|
||||||
|
if(ret == PHASE_DEFERRED) {
|
||||||
|
return MAC_TX_DEFERRED;
|
||||||
|
}
|
||||||
|
if(ret != PHASE_UNKNOWN) {
|
||||||
|
is_known_receiver = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
ret = phase_wait(&phase_list, packetbuf_addr(PACKETBUF_ADDR_RECEIVER),
|
||||||
|
CYCLE_TIME, 7 * CHECK_TIME,
|
||||||
|
mac_callback, mac_callback_ptr);
|
||||||
|
if(ret == PHASE_DEFERRED) {
|
||||||
|
return MAC_TX_DEFERRED;
|
||||||
|
}
|
||||||
|
if(ret != PHASE_UNKNOWN) {
|
||||||
|
is_known_receiver = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif /* WITH_PHASE_OPTIMIZATION */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make sure that the packet is longer or equal to the shorest
|
||||||
|
packet length. */
|
||||||
|
if(packetbuf_totlen() < SHORTEST_PACKET_SIZE) {
|
||||||
|
PRINTF("contikimac: shorter than shortest (%d)\n", packetbuf_totlen());
|
||||||
|
packetbuf_set_datalen(SHORTEST_PACKET_SIZE);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Create the MAC header for the data packet. */
|
||||||
len = NETSTACK_FRAMER.create();
|
len = NETSTACK_FRAMER.create();
|
||||||
if(len == 0) {
|
if(len == 0) {
|
||||||
/* Failed to send */
|
/* Failed to send */
|
||||||
|
@ -565,24 +556,6 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
NETSTACK_RADIO.prepare(packetbuf_hdrptr(), packetbuf_totlen());
|
NETSTACK_RADIO.prepare(packetbuf_hdrptr(), packetbuf_totlen());
|
||||||
transmit_len = packetbuf_totlen();
|
transmit_len = packetbuf_totlen();
|
||||||
|
|
||||||
|
|
||||||
#if WITH_STREAMING
|
|
||||||
if(packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) ==
|
|
||||||
PACKETBUF_ATTR_PACKET_TYPE_STREAM) {
|
|
||||||
is_streaming = 1;
|
|
||||||
if(rimeaddr_cmp(&is_streaming_to, &rimeaddr_null)) {
|
|
||||||
rimeaddr_copy(&is_streaming_to,
|
|
||||||
packetbuf_addr(PACKETBUF_ADDR_RECEIVER));
|
|
||||||
} else
|
|
||||||
if(!rimeaddr_cmp
|
|
||||||
(&is_streaming_to, packetbuf_addr(PACKETBUF_ADDR_RECEIVER))) {
|
|
||||||
rimeaddr_copy(&is_streaming_to_too,
|
|
||||||
packetbuf_addr(PACKETBUF_ADDR_RECEIVER));
|
|
||||||
}
|
|
||||||
stream_until = RTIMER_NOW() + DEFAULT_STREAM_TIME;
|
|
||||||
}
|
|
||||||
#endif /* WITH_STREAMING */
|
|
||||||
|
|
||||||
|
|
||||||
/* By setting we_are_sending to one, we ensure that the rtimer
|
/* By setting we_are_sending to one, we ensure that the rtimer
|
||||||
powercycle interrupt do not interfere with us sending the packet. */
|
powercycle interrupt do not interfere with us sending the packet. */
|
||||||
|
@ -644,6 +617,11 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
return MAC_TX_COLLISION;
|
return MAC_TX_COLLISION;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!is_broadcast) {
|
||||||
|
on();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
t0 = RTIMER_NOW();
|
t0 = RTIMER_NOW();
|
||||||
t = RTIMER_NOW();
|
t = RTIMER_NOW();
|
||||||
#if NURTIMER
|
#if NURTIMER
|
||||||
|
@ -655,7 +633,11 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
got_strobe_ack == 0 && collisions == 0 &&
|
got_strobe_ack == 0 && collisions == 0 &&
|
||||||
RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + STROBE_TIME); strobes++) {
|
RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + STROBE_TIME); strobes++) {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if(is_known_receiver && strobes > MAX_PHASE_STROBES) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
/* Let the watchdog know we are still alive. */
|
/* Let the watchdog know we are still alive. */
|
||||||
watchdog_periodic();
|
watchdog_periodic();
|
||||||
|
|
||||||
|
@ -664,22 +646,14 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
t = RTIMER_NOW();
|
t = RTIMER_NOW();
|
||||||
|
|
||||||
|
|
||||||
/*if(is_broadcast) {
|
{
|
||||||
NETSTACK_RADIO.transmit(transmit_len);
|
|
||||||
off();b
|
|
||||||
} else*/ {
|
|
||||||
rtimer_clock_t wt;
|
rtimer_clock_t wt;
|
||||||
rtimer_clock_t now = RTIMER_NOW();
|
rtimer_clock_t now = RTIMER_NOW();
|
||||||
|
|
||||||
leds_on(LEDS_RED);
|
leds_on(LEDS_RED);
|
||||||
NETSTACK_RADIO.transmit(transmit_len);
|
NETSTACK_RADIO.transmit(transmit_len);
|
||||||
leds_off(LEDS_RED);
|
leds_off(LEDS_RED);
|
||||||
if(!is_broadcast) {
|
|
||||||
on();
|
|
||||||
}
|
|
||||||
/* 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. */
|
|
||||||
wt = RTIMER_NOW();
|
wt = RTIMER_NOW();
|
||||||
#if NURTIMER
|
#if NURTIMER
|
||||||
while(RTIMER_CLOCK_LT(wt, RTIMER_NOW(), wt + INTER_PACKET_INTERVAL));
|
while(RTIMER_CLOCK_LT(wt, RTIMER_NOW(), wt + INTER_PACKET_INTERVAL));
|
||||||
|
@ -699,46 +673,35 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
len = NETSTACK_RADIO.read(ackbuf, ACK_LEN);
|
len = NETSTACK_RADIO.read(ackbuf, ACK_LEN);
|
||||||
if(len == ACK_LEN) {
|
if(len == ACK_LEN) {
|
||||||
got_strobe_ack = 1;
|
got_strobe_ack = 1;
|
||||||
encounter_time = now;
|
encounter_time = last_transmission_time;
|
||||||
packet_indication_flag = 0;
|
break;
|
||||||
} else {
|
} else {
|
||||||
PRINTF("contikimac: collisions while sending\n");
|
PRINTF("contikimac: collisions while sending\n");
|
||||||
packet_indication_flag = 0;
|
|
||||||
collisions++;
|
collisions++;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
}
|
}
|
||||||
|
last_transmission_time = now;
|
||||||
|
first_transmission = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if WITH_ACK_OPTIMIZATION
|
if(WITH_ACK_OPTIMIZATION) {
|
||||||
/* If we have received the strobe ACK, and we are sending a packet
|
/* If we have received the strobe ACK, and we are sending a packet
|
||||||
that will need an upper layer ACK (as signified by the
|
that will need an upper layer ACK (as signified by the
|
||||||
PACKETBUF_ATTR_RELIABLE packet attribute), we keep the radio on. */
|
PACKETBUF_ATTR_RELIABLE packet attribute), we keep the radio on. */
|
||||||
if(got_strobe_ack && is_reliable) {
|
if(got_strobe_ack && is_reliable) {
|
||||||
on(); /* Wait for ACK packet */
|
on(); /* Wait for ACK packet */
|
||||||
|
} else {
|
||||||
|
off();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
off();
|
off();
|
||||||
}
|
}
|
||||||
#else /* WITH_ACK_OPTIMIZATION */
|
|
||||||
off();
|
|
||||||
#endif /* WITH_ACK_OPTIMIZATION */
|
|
||||||
|
|
||||||
#if WITH_PHASE_OPTIMIZATION
|
PRINTF("contikimac: send (strobes=%u, len=%u, %s, %s), done\n", strobes,
|
||||||
#if WITH_ACK_OPTIMIZATION
|
packetbuf_totlen(),
|
||||||
if(got_strobe_ack && packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) !=
|
got_strobe_ack ? "ack" : "no ack",
|
||||||
PACKETBUF_ATTR_PACKET_TYPE_ACK && is_streaming == 0) {
|
collisions ? "collision" : "no collision");
|
||||||
phase_register(&phase_list, packetbuf_addr(PACKETBUF_ADDR_RECEIVER), encounter_time);
|
|
||||||
}
|
|
||||||
#else /* WITH_ACK_OPTIMIZATION */
|
|
||||||
if(got_strobe_ack && is_streaming == 0) {
|
|
||||||
phase_register(&phase_list, packetbuf_addr(PACKETBUF_ADDR_RECEIVER), encounter_time);
|
|
||||||
}
|
|
||||||
#endif /* WITH_ACK_OPTIMIZATION */
|
|
||||||
#endif /* WITH_PHASE_OPTIMIZATION */
|
|
||||||
|
|
||||||
PRINTF("contikimac: send (strobes=%u,len=%u,%s), done\n", strobes,
|
|
||||||
packetbuf_totlen(), got_strobe_ack ? "ack" : "no ack");
|
|
||||||
|
|
||||||
#if CONTIKIMAC_CONF_COMPOWER
|
#if CONTIKIMAC_CONF_COMPOWER
|
||||||
/* Accumulate the power consumption for the packet transmission. */
|
/* Accumulate the power consumption for the packet transmission. */
|
||||||
|
@ -757,15 +720,37 @@ send_packet(mac_callback_t mac_callback, void *mac_callback_ptr)
|
||||||
|
|
||||||
we_are_sending = 0;
|
we_are_sending = 0;
|
||||||
|
|
||||||
|
/* Determine the return value that we will return from the
|
||||||
|
function. We must pass this value to the phase module before we
|
||||||
|
return from the function. */
|
||||||
if(collisions > 0) {
|
if(collisions > 0) {
|
||||||
return MAC_TX_COLLISION;
|
ret = MAC_TX_COLLISION;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!is_broadcast && !got_strobe_ack) {
|
if(!is_broadcast && !got_strobe_ack) {
|
||||||
return MAC_TX_NOACK;
|
ret = MAC_TX_NOACK;
|
||||||
} else {
|
} else {
|
||||||
return MAC_TX_OK;
|
ret = MAC_TX_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if WITH_PHASE_OPTIMIZATION
|
||||||
|
if(!first_transmission) {
|
||||||
|
if(WITH_ACK_OPTIMIZATION) {
|
||||||
|
if(collisions == 0 && packetbuf_attr(PACKETBUF_ATTR_PACKET_TYPE) !=
|
||||||
|
PACKETBUF_ATTR_PACKET_TYPE_ACK && is_streaming == 0) {
|
||||||
|
phase_update(&phase_list, packetbuf_addr(PACKETBUF_ADDR_RECEIVER), encounter_time,
|
||||||
|
ret);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if(collisions == 0 && is_streaming == 0) {
|
||||||
|
phase_update(&phase_list, packetbuf_addr(PACKETBUF_ADDR_RECEIVER), encounter_time,
|
||||||
|
ret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif /* WITH_PHASE_OPTIMIZATION */
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static void
|
static void
|
||||||
|
@ -784,8 +769,6 @@ input_packet(void)
|
||||||
asleep. */
|
asleep. */
|
||||||
off();
|
off();
|
||||||
|
|
||||||
packet_indication_flag = 0;
|
|
||||||
|
|
||||||
if(packetbuf_totlen() > 0 && NETSTACK_FRAMER.parse()) {
|
if(packetbuf_totlen() > 0 && NETSTACK_FRAMER.parse()) {
|
||||||
|
|
||||||
if(packetbuf_datalen() > 0 &&
|
if(packetbuf_datalen() > 0 &&
|
||||||
|
@ -954,10 +937,6 @@ const struct rdc_driver contikimac_driver = {
|
||||||
uint16_t
|
uint16_t
|
||||||
contikimac_debug_print(void)
|
contikimac_debug_print(void)
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
for(i = 0; i < LATEST_CCA_CHECKS_NUM; ++i) {
|
|
||||||
printf("%d: %d, %d\n", i, cca_checks[i].check[0], cca_checks[i].check[1]);
|
|
||||||
}
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: phase.c,v 1.3 2010/02/28 20:19:47 adamdunkels Exp $
|
* $Id: phase.c,v 1.4 2010/03/14 22:59:23 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -54,15 +54,27 @@ struct phase_queueitem {
|
||||||
struct queuebuf *q;
|
struct queuebuf *q;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define PHASE_DEFER_THRESHOLD 4
|
#define PHASE_DEFER_THRESHOLD 2
|
||||||
#define PHASE_QUEUESIZE 2
|
#define PHASE_QUEUESIZE 8
|
||||||
|
|
||||||
|
#define MAX_NOACKS 3
|
||||||
|
|
||||||
MEMB(phase_memb, struct phase_queueitem, PHASE_QUEUESIZE);
|
MEMB(phase_memb, struct phase_queueitem, PHASE_QUEUESIZE);
|
||||||
|
|
||||||
|
#define DEBUG 1
|
||||||
|
#if DEBUG
|
||||||
|
#include <stdio.h>
|
||||||
|
#define PRINTF(...) printf(__VA_ARGS__)
|
||||||
|
#define PRINTDEBUG(...) printf(__VA_ARGS__)
|
||||||
|
#else
|
||||||
|
#define PRINTF(...)
|
||||||
|
#define PRINTDEBUG(...)
|
||||||
|
#endif
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
phase_register(const struct phase_list *list,
|
phase_update(const struct phase_list *list,
|
||||||
const rimeaddr_t * neighbor, rtimer_clock_t time)
|
const rimeaddr_t * neighbor, rtimer_clock_t time,
|
||||||
|
int mac_status)
|
||||||
{
|
{
|
||||||
struct phase *e;
|
struct phase *e;
|
||||||
|
|
||||||
|
@ -70,11 +82,31 @@ phase_register(const struct phase_list *list,
|
||||||
for(e = list_head(*list->list); e != NULL; e = e->next) {
|
for(e = list_head(*list->list); e != NULL; e = e->next) {
|
||||||
if(rimeaddr_cmp(neighbor, &e->neighbor)) {
|
if(rimeaddr_cmp(neighbor, &e->neighbor)) {
|
||||||
e->time = time;
|
e->time = time;
|
||||||
|
|
||||||
|
/* If the neighbor didn't reply to us, it may have switched
|
||||||
|
phase (rebooted). We try a number of transmissions to it
|
||||||
|
before we drop it from the phase list. */
|
||||||
|
if(mac_status == MAC_TX_NOACK) {
|
||||||
|
printf("phase noacks %d\n", e->noacks);
|
||||||
|
e->noacks++;
|
||||||
|
if(e->noacks >= MAX_NOACKS) {
|
||||||
|
list_remove(*list->list, e);
|
||||||
|
memb_free(&phase_memb, e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else if(mac_status == MAC_TX_OK) {
|
||||||
|
e->noacks = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make sure this entry is first on the list so subsequent
|
||||||
|
searches are faster. */
|
||||||
|
list_remove(*list->list, e);
|
||||||
|
list_push(*list->list, e);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* No matching phase was found, so we allocate a new one. */
|
/* No matching phase was found, so we allocate a new one. */
|
||||||
if(e == NULL) {
|
if(mac_status == MAC_TX_OK && e == NULL) {
|
||||||
e = memb_alloc(list->memb);
|
e = memb_alloc(list->memb);
|
||||||
if(e == NULL) {
|
if(e == NULL) {
|
||||||
/* We could not allocate memory for this phase, so we drop
|
/* We could not allocate memory for this phase, so we drop
|
||||||
|
@ -83,6 +115,7 @@ phase_register(const struct phase_list *list,
|
||||||
}
|
}
|
||||||
rimeaddr_copy(&e->neighbor, neighbor);
|
rimeaddr_copy(&e->neighbor, neighbor);
|
||||||
e->time = time;
|
e->time = time;
|
||||||
|
e->noacks = 0;
|
||||||
list_push(*list->list, e);
|
list_push(*list->list, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -92,13 +125,10 @@ send_packet(void *ptr)
|
||||||
{
|
{
|
||||||
struct phase_queueitem *p = ptr;
|
struct phase_queueitem *p = ptr;
|
||||||
|
|
||||||
leds_on(LEDS_ALL);
|
|
||||||
|
|
||||||
queuebuf_to_packetbuf(p->q);
|
queuebuf_to_packetbuf(p->q);
|
||||||
queuebuf_free(p->q);
|
queuebuf_free(p->q);
|
||||||
memb_free(&phase_memb, p);
|
memb_free(&phase_memb, p);
|
||||||
NETSTACK_RDC.send(p->mac_callback, p->mac_callback_ptr);
|
NETSTACK_RDC.send(p->mac_callback, p->mac_callback_ptr);
|
||||||
leds_off(LEDS_ALL);
|
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
phase_status_t
|
phase_status_t
|
||||||
|
@ -159,9 +189,10 @@ phase_wait(struct phase_list *list,
|
||||||
watchdog_periodic();
|
watchdog_periodic();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return PHASE_SEND_NOW;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return PHASE_SEND_NOW;
|
return PHASE_UNKNOWN;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: phase.h,v 1.2 2010/02/28 20:19:47 adamdunkels Exp $
|
* $Id: phase.h,v 1.3 2010/03/14 22:59:23 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -51,6 +51,7 @@ struct phase {
|
||||||
struct phase *next;
|
struct phase *next;
|
||||||
rimeaddr_t neighbor;
|
rimeaddr_t neighbor;
|
||||||
rtimer_clock_t time;
|
rtimer_clock_t time;
|
||||||
|
uint8_t noacks;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct phase_list {
|
struct phase_list {
|
||||||
|
@ -59,6 +60,7 @@ struct phase_list {
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
PHASE_UNKNOWN,
|
||||||
PHASE_SEND_NOW,
|
PHASE_SEND_NOW,
|
||||||
PHASE_DEFERRED,
|
PHASE_DEFERRED,
|
||||||
} phase_status_t;
|
} phase_status_t;
|
||||||
|
@ -72,8 +74,8 @@ void phase_init(struct phase_list *list);
|
||||||
phase_status_t phase_wait(struct phase_list *list, const rimeaddr_t *neighbor,
|
phase_status_t phase_wait(struct phase_list *list, const rimeaddr_t *neighbor,
|
||||||
rtimer_clock_t cycle_time, rtimer_clock_t wait_before,
|
rtimer_clock_t cycle_time, rtimer_clock_t wait_before,
|
||||||
mac_callback_t mac_callback, void *mac_callback_ptr);
|
mac_callback_t mac_callback, void *mac_callback_ptr);
|
||||||
void phase_register(const struct phase_list *list, const rimeaddr_t * neighbor,
|
void phase_update(const struct phase_list *list, const rimeaddr_t * neighbor,
|
||||||
rtimer_clock_t time);
|
rtimer_clock_t time, int mac_status);
|
||||||
|
|
||||||
|
|
||||||
#endif /* PHASE_H */
|
#endif /* PHASE_H */
|
||||||
|
|
Loading…
Add table
Reference in a new issue