Merge branch 'develop' into tsch-handle-prepare-error
This commit is contained in:
commit
e96a325588
@ -3,6 +3,9 @@
|
|||||||
# Future extensions to the build system that are of a similar nature (for
|
# Future extensions to the build system that are of a similar nature (for
|
||||||
# embedded devices only), can be achieved by extending this Makefile here.
|
# embedded devices only), can be achieved by extending this Makefile here.
|
||||||
|
|
||||||
|
###
|
||||||
|
### Targets using the tools/serial-io
|
||||||
|
###
|
||||||
RLWRAPGOALS = login serialdump serialview
|
RLWRAPGOALS = login serialdump serialview
|
||||||
|
|
||||||
.PHONY: $(RLWRAPGOALS)
|
.PHONY: $(RLWRAPGOALS)
|
||||||
@ -31,3 +34,14 @@ serialview: $(SERIAL_DUMP_BIN)
|
|||||||
|
|
||||||
login: $(SERIAL_DUMP_BIN)
|
login: $(SERIAL_DUMP_BIN)
|
||||||
$(SERIALDUMP) -b$(BAUDRATE) $(PORT)
|
$(SERIALDUMP) -b$(BAUDRATE) $(PORT)
|
||||||
|
|
||||||
|
###
|
||||||
|
### Targets using tools/motelist
|
||||||
|
###
|
||||||
|
CONTIKI_NG_MOTELIST_DIR = $(TOOLS_DIR)/motelist
|
||||||
|
CONTIKI_NG_MOTELIST = python $(CONTIKI_NG_MOTELIST_DIR)/motelist.py
|
||||||
|
|
||||||
|
.PHONY: motelist-all
|
||||||
|
|
||||||
|
motelist-all:
|
||||||
|
$(CONTIKI_NG_MOTELIST)
|
||||||
|
29
Makefile.help
Normal file
29
Makefile.help
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
usage:
|
||||||
|
@echo "Usage:"
|
||||||
|
@echo " make [TARGET=(TARGET)] [BOARD=(BOARD)] [DEFINES=(DEFINES)] [PORT=(PORT)] [target]"
|
||||||
|
@echo ""
|
||||||
|
@echo "Typical usage:"
|
||||||
|
@echo " make [TARGET=(TARGET)] [BOARD=(BOARD)] [all]"
|
||||||
|
@echo ""
|
||||||
|
@echo " Will build Contiki-NG firmware(s) from the current example dir"
|
||||||
|
@echo " for platform TARGET, board BOARD."
|
||||||
|
@echo ""
|
||||||
|
@echo "Miscellaneous targets:"
|
||||||
|
@echo " targets Prints list of supported platforms"
|
||||||
|
@echo " boards Prints a list of supported boards for TARGET"
|
||||||
|
@echo " savetarget Saves TARGET and BOARD for future invocations of make"
|
||||||
|
@echo " savedefines Saves DEFINES for future invocations of make"
|
||||||
|
@echo " clean Removes all compiled files for TARGET"
|
||||||
|
@echo " distclean Removes all compiled files for all TARGETs"
|
||||||
|
@echo " viewconf Prints Contiki-NG build configuration for TARGET"
|
||||||
|
@echo " %.flashprof Shows a Flash/ROM profile of a given firmware (e.g. hello-world.flashprof)"
|
||||||
|
@echo " %.ramprof Shows a RAM profile of a given firmware (e.g. hello-world.ramprof)"
|
||||||
|
@echo " %.o Produces an object file from a given source file (e.g. hello-world.o)"
|
||||||
|
@echo " %.e Produces the pre-processed version of a given source file (e.g. hello-world.e)"
|
||||||
|
@echo " %.s Produces an assembly file from a given source file (e.g. hello-world.s)"
|
||||||
|
@echo " login View the serial output of the device connected to PORT"
|
||||||
|
@echo " serialview Same as login, but prepend serial output with a unix timestamp"
|
||||||
|
@echo " serialdump same as serialview, but also save the output to a file"
|
||||||
|
@echo " motelist-all Prints a list of connected devices"
|
||||||
|
|
||||||
|
help: usage
|
@ -395,34 +395,7 @@ endif
|
|||||||
%.flashprof: %.$(TARGET)
|
%.flashprof: %.$(TARGET)
|
||||||
$(NM) -S -td --size-sort $< | grep -i " [t] " | cut -d' ' -f2,4
|
$(NM) -S -td --size-sort $< | grep -i " [t] " | cut -d' ' -f2,4
|
||||||
|
|
||||||
usage:
|
include $(CONTIKI)/Makefile.help
|
||||||
@echo "Usage:"
|
|
||||||
@echo " make [TARGET=(TARGET)] [BOARD=(BOARD)] [DEFINES=(DEFINES)] [PORT=(PORT)] [target]"
|
|
||||||
@echo ""
|
|
||||||
@echo "Typical usage:"
|
|
||||||
@echo " make [TARGET=(TARGET)] [BOARD=(BOARD)] [all]"
|
|
||||||
@echo ""
|
|
||||||
@echo " Will build Contiki-NG firmware(s) from the current example dir"
|
|
||||||
@echo " for platform TARGET, board BOARD."
|
|
||||||
@echo ""
|
|
||||||
@echo "Miscellaneous targets:"
|
|
||||||
@echo " targets Prints list of supported platforms"
|
|
||||||
@echo " boards Prints a list of supported boards for TARGET"
|
|
||||||
@echo " savetarget Saves TARGET and BOARD for future invocations of make"
|
|
||||||
@echo " savedefines Saves DEFINES for future invocations of make"
|
|
||||||
@echo " clean Removes all compiled files for TARGET"
|
|
||||||
@echo " distclean Removes all compiled files for all TARGETs"
|
|
||||||
@echo " viewconf Prints Contiki-NG build configuration for TARGET"
|
|
||||||
@echo " %.flashprof Shows a Flash/ROM profile of a given firmware (e.g. hello-world.flashprof)"
|
|
||||||
@echo " %.ramprof Shows a RAM profile of a given firmware (e.g. hello-world.ramprof)"
|
|
||||||
@echo " %.o Produces an object file from a given source file (e.g. hello-world.o)"
|
|
||||||
@echo " %.e Produces the pre-processed version of a given source file (e.g. hello-world.e)"
|
|
||||||
@echo " %.s Produces an assembly file from a given source file (e.g. hello-world.s)"
|
|
||||||
@echo " login View the serial output of the device connected to PORT"
|
|
||||||
@echo " serialview Same as login, but prepend serial output with a unix timestamp"
|
|
||||||
@echo " serialdump same as serialview, but also save the output to a file"
|
|
||||||
|
|
||||||
help: usage
|
|
||||||
|
|
||||||
targets:
|
targets:
|
||||||
@ls $(CONTIKI)/arch/platform $(TARGETDIRS)
|
@ls $(CONTIKI)/arch/platform $(TARGETDIRS)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
TI_XXWARE_PATH = lib/cc13xxware
|
TI_XXWARE_PATH = lib/cc13xxware
|
||||||
|
|
||||||
CONTIKI_CPU_SOURCEFILES += smartrf-settings.c prop-mode.c prop-mode-tx-power.c
|
CONTIKI_CPU_SOURCEFILES += smartrf-settings.c prop-mode.c prop-mode-tx-power.c cc13xx-50kbps-tsch.c
|
||||||
|
|
||||||
CFLAGS += -DCPU_FAMILY_CC13X0=1 -DCPU_FAMILY_CC13XX=1
|
CFLAGS += -DCPU_FAMILY_CC13X0=1 -DCPU_FAMILY_CC13XX=1
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
CPU_ABS_PATH = arch/cpu/cc26xx-cc13xx
|
CPU_ABS_PATH = arch/cpu/cc26xx-cc13xx
|
||||||
TI_XXWARE = $(CONTIKI_CPU)/$(TI_XXWARE_PATH)
|
TI_XXWARE = $(CONTIKI_CPU)/$(TI_XXWARE_PATH)
|
||||||
|
|
||||||
ifeq (,$(wildcard $(TI_XXWARE)))
|
ifeq (,$(wildcard $(TI_XXWARE)/*))
|
||||||
$(warning $(TI_XXWARE) does not exist.)
|
$(warning $(TI_XXWARE) does not exist or is empty.)
|
||||||
$(warning Did you run 'git submodule update --init' ?)
|
$(warning Did you run 'git submodule update --init' ?)
|
||||||
$(error "")
|
$(error "")
|
||||||
endif
|
endif
|
||||||
|
@ -36,12 +36,43 @@
|
|||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* TSCH related defines */
|
/* TSCH related defines */
|
||||||
|
|
||||||
|
/* 2 bytes header, 4 bytes CRC */
|
||||||
|
#define CC13XX_RADIO_PHY_OVERHEAD 6
|
||||||
|
/* 3 bytes preamble, 3 bytes sync */
|
||||||
|
#define CC13XX_RADIO_PHY_HEADER_LEN 6
|
||||||
|
/* The default data rate is 50 kbps */
|
||||||
|
#define CC13XX_RADIO_BIT_RATE 50000
|
||||||
|
|
||||||
/* 1 len byte, 2 bytes CRC */
|
/* 1 len byte, 2 bytes CRC */
|
||||||
#define RADIO_PHY_OVERHEAD 3
|
#define CC26XX_RADIO_PHY_OVERHEAD 3
|
||||||
/* 250kbps data rate. One byte = 32us */
|
/* 4 bytes preamble, 1 byte sync */
|
||||||
#define RADIO_BYTE_AIR_TIME 32
|
#define CC26XX_RADIO_PHY_HEADER_LEN 5
|
||||||
|
/* The fixed data rate is 250 kbps */
|
||||||
|
#define CC26XX_RADIO_BIT_RATE 250000
|
||||||
|
|
||||||
|
#if CPU_FAMILY_CC13XX
|
||||||
|
#define RADIO_PHY_HEADER_LEN CC13XX_RADIO_PHY_HEADER_LEN
|
||||||
|
#define RADIO_PHY_OVERHEAD CC13XX_RADIO_PHY_OVERHEAD
|
||||||
|
#define RADIO_BIT_RATE CC13XX_RADIO_BIT_RATE
|
||||||
|
|
||||||
|
/* The TSCH default slot length of 10ms is too short, use custom one instead */
|
||||||
|
#ifndef TSCH_CONF_DEFAULT_TIMESLOT_TIMING
|
||||||
|
#define TSCH_CONF_DEFAULT_TIMESLOT_TIMING tsch_timing_cc13xx_50kbps
|
||||||
|
#endif /* TSCH_CONF_DEFAULT_TIMESLOT_TIMING */
|
||||||
|
|
||||||
|
/* Symbol for the custom TSCH timeslot timing template */
|
||||||
|
#define TSCH_CONF_ARCH_HDR_PATH "rf-core/cc13xx-50kbps-tsch.h"
|
||||||
|
|
||||||
|
#else
|
||||||
|
#define RADIO_PHY_HEADER_LEN CC26XX_RADIO_PHY_HEADER_LEN
|
||||||
|
#define RADIO_PHY_OVERHEAD CC26XX_RADIO_PHY_OVERHEAD
|
||||||
|
#define RADIO_BIT_RATE CC26XX_RADIO_BIT_RATE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define RADIO_BYTE_AIR_TIME (1000000 / (RADIO_BIT_RATE / 8))
|
||||||
|
|
||||||
/* Delay between GO signal and SFD */
|
/* Delay between GO signal and SFD */
|
||||||
#define RADIO_DELAY_BEFORE_TX ((unsigned)US_TO_RTIMERTICKS(81))
|
#define RADIO_DELAY_BEFORE_TX ((unsigned)US_TO_RTIMERTICKS(RADIO_PHY_HEADER_LEN * RADIO_BYTE_AIR_TIME))
|
||||||
/* Delay between GO signal and start listening.
|
/* Delay between GO signal and start listening.
|
||||||
* This value is so small because the radio is constantly on within each timeslot. */
|
* This value is so small because the radio is constantly on within each timeslot. */
|
||||||
#define RADIO_DELAY_BEFORE_RX ((unsigned)US_TO_RTIMERTICKS(15))
|
#define RADIO_DELAY_BEFORE_RX ((unsigned)US_TO_RTIMERTICKS(15))
|
||||||
@ -56,9 +87,6 @@
|
|||||||
#define RADIO_TO_RTIMER(X) ((uint32_t)(((uint64_t)(X) * (RTIMER_SECOND / 256)) / (RADIO_TIMER_SECOND / 256)))
|
#define RADIO_TO_RTIMER(X) ((uint32_t)(((uint64_t)(X) * (RTIMER_SECOND / 256)) / (RADIO_TIMER_SECOND / 256)))
|
||||||
#define USEC_TO_RADIO(X) ((X) * 4)
|
#define USEC_TO_RADIO(X) ((X) * 4)
|
||||||
|
|
||||||
/* The PHY header (preamble + SFD, 4+1 bytes) duration is equivalent to 10 symbols */
|
|
||||||
#define RADIO_IEEE_802154_PHY_HEADER_DURATION_USEC 160
|
|
||||||
|
|
||||||
/* Do not turn off TSCH within a timeslot: not enough time */
|
/* Do not turn off TSCH within a timeslot: not enough time */
|
||||||
#define TSCH_CONF_RADIO_ON_DURING_TIMESLOT 1
|
#define TSCH_CONF_RADIO_ON_DURING_TIMESLOT 1
|
||||||
|
|
||||||
|
@ -386,7 +386,7 @@ on(void)
|
|||||||
rf_core_power_down();
|
rf_core_power_down();
|
||||||
return RF_CORE_CMD_ERROR;
|
return RF_CORE_CMD_ERROR;
|
||||||
}
|
}
|
||||||
rf_core_setup_interrupts(0);
|
rf_core_setup_interrupts();
|
||||||
oscillators_switch_to_hf_xosc();
|
oscillators_switch_to_hf_xosc();
|
||||||
|
|
||||||
if(rf_ble_cmd_setup_ble_mode() != RF_BLE_CMD_OK) {
|
if(rf_ble_cmd_setup_ble_mode() != RF_BLE_CMD_OK) {
|
||||||
|
73
arch/cpu/cc26xx-cc13xx/rf-core/cc13xx-50kbps-tsch.c
Normal file
73
arch/cpu/cc26xx-cc13xx/rf-core/cc13xx-50kbps-tsch.c
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2018, University of Bristol - http://www.bristol.ac.uk/
|
||||||
|
* 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
|
||||||
|
* IEEE 802.15.4 TSCH timeslot timings for CC13xx chips at 50kbps datarate
|
||||||
|
* \author
|
||||||
|
* Atis Elsts <atis.elsts@bristol.ac.uk>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "contiki.h"
|
||||||
|
#include "net/mac/tsch/tsch.h"
|
||||||
|
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_CCA_OFFSET 1800
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_CCA 128
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_TX_OFFSET 2500
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_RX_OFFSET (CC13XX_TSCH_DEFAULT_TS_TX_OFFSET - (TSCH_CONF_RX_WAIT / 2))
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_RX_ACK_DELAY 2000
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_TX_ACK_DELAY 3000
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_RX_WAIT TSCH_CONF_RX_WAIT
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_ACK_WAIT 3000
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_RX_TX 192
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_MAX_ACK 10000
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_MAX_TX 21600
|
||||||
|
|
||||||
|
/* Timeslot length: 40000 usec */
|
||||||
|
#define CC13XX_TSCH_DEFAULT_TS_TIMESLOT_LENGTH 40000
|
||||||
|
|
||||||
|
/* TSCH timeslot timing (microseconds) */
|
||||||
|
const uint16_t tsch_timing_cc13xx_50kbps[tsch_ts_elements_count] = {
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_CCA_OFFSET,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_CCA,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_TX_OFFSET,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_RX_OFFSET,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_RX_ACK_DELAY,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_TX_ACK_DELAY,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_RX_WAIT,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_ACK_WAIT,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_RX_TX,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_MAX_ACK,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_MAX_TX,
|
||||||
|
CC13XX_TSCH_DEFAULT_TS_TIMESLOT_LENGTH,
|
||||||
|
};
|
41
arch/cpu/cc26xx-cc13xx/rf-core/cc13xx-50kbps-tsch.h
Normal file
41
arch/cpu/cc26xx-cc13xx/rf-core/cc13xx-50kbps-tsch.h
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2018, University of Bristol - http://www.bristol.ac.uk/
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef CC13XX_50KBPS_TSCH_H_
|
||||||
|
#define CC13XX_50KBPS_TSCH_H_
|
||||||
|
|
||||||
|
#include "contiki.h"
|
||||||
|
|
||||||
|
/* TSCH timeslot timing (microseconds) */
|
||||||
|
extern const uint16_t tsch_timing_cc13xx_50kbps[];
|
||||||
|
|
||||||
|
#endif /* CC13XX_50KBPS_TSCH_H_ */
|
@ -120,6 +120,8 @@ static uint8_t rf_stats[16] = { 0 };
|
|||||||
/* The size of the RF commands buffer */
|
/* The size of the RF commands buffer */
|
||||||
#define RF_CMD_BUFFER_SIZE 128
|
#define RF_CMD_BUFFER_SIZE 128
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
#define RAT_TIMESTAMP_OFFSET_2_4_GHZ 0
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
/**
|
/**
|
||||||
* \brief Returns the current status of a running Radio Op command
|
* \brief Returns the current status of a running Radio Op command
|
||||||
* \param a A pointer with the buffer used to initiate the command
|
* \param a A pointer with the buffer used to initiate the command
|
||||||
@ -130,55 +132,9 @@ static uint8_t rf_stats[16] = { 0 };
|
|||||||
*/
|
*/
|
||||||
#define RF_RADIO_OP_GET_STATUS(a) (((rfc_radioOp_t *)a)->status)
|
#define RF_RADIO_OP_GET_STATUS(a) (((rfc_radioOp_t *)a)->status)
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* Special value returned by CMD_IEEE_CCA_REQ when an RSSI is not available */
|
|
||||||
#define RF_CMD_CCA_REQ_RSSI_UNKNOWN -128
|
|
||||||
|
|
||||||
/* Used for the return value of channel_clear */
|
|
||||||
#define RF_CCA_CLEAR 1
|
|
||||||
#define RF_CCA_BUSY 0
|
|
||||||
|
|
||||||
/* Used as an error return value for get_cca_info */
|
|
||||||
#define RF_GET_CCA_INFO_ERROR 0xFF
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Values of the individual bits of the ccaInfo field in CMD_IEEE_CCA_REQ's
|
|
||||||
* status struct
|
|
||||||
*/
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_STATE_IDLE 0 /* 00 */
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_STATE_BUSY 1 /* 01 */
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_STATE_INVALID 2 /* 10 */
|
|
||||||
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_CORR_IDLE (0 << 4)
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_CORR_BUSY (1 << 4)
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_CORR_INVALID (3 << 4)
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_CORR_MASK (3 << 4)
|
|
||||||
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_SYNC_BUSY (1 << 6)
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
#define IEEE_MODE_CHANNEL_MIN 11
|
#define IEEE_MODE_CHANNEL_MIN 11
|
||||||
#define IEEE_MODE_CHANNEL_MAX 26
|
#define IEEE_MODE_CHANNEL_MAX 26
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* How long to wait for an ongoing ACK TX to finish before starting frame TX */
|
|
||||||
#define TX_WAIT_TIMEOUT (RTIMER_SECOND >> 11)
|
|
||||||
|
|
||||||
/* How long to wait for the RF to enter RX in rf_cmd_ieee_rx */
|
|
||||||
#define ENTER_RX_WAIT_TIMEOUT (RTIMER_SECOND >> 10)
|
|
||||||
|
|
||||||
/* How long to wait for the RF to react on CMD_ABORT: around 1 msec */
|
|
||||||
#define RF_TURN_OFF_WAIT_TIMEOUT (RTIMER_SECOND >> 10)
|
|
||||||
|
|
||||||
/* How long to wait for the RF to finish TX of a packet or an ACK */
|
|
||||||
#define TX_FINISH_WAIT_TIMEOUT (RTIMER_SECOND >> 7)
|
|
||||||
|
|
||||||
#define LIMITED_BUSYWAIT(cond, timeout) do { \
|
|
||||||
rtimer_clock_t end_time = RTIMER_NOW() + timeout; \
|
|
||||||
while(cond) { \
|
|
||||||
if(!RTIMER_CLOCK_LT(RTIMER_NOW(), end_time)) { \
|
|
||||||
break; \
|
|
||||||
} \
|
|
||||||
} \
|
|
||||||
} while(0)
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
/* TX Power dBm lookup table - values from SmartRF Studio */
|
/* TX Power dBm lookup table - values from SmartRF Studio */
|
||||||
typedef struct output_config {
|
typedef struct output_config {
|
||||||
radio_value_t dbm;
|
radio_value_t dbm;
|
||||||
@ -211,33 +167,6 @@ static const output_config_t output_power[] = {
|
|||||||
/* Default TX Power - position in output_power[] */
|
/* Default TX Power - position in output_power[] */
|
||||||
static const output_config_t *tx_power_current = &output_power[0];
|
static const output_config_t *tx_power_current = &output_power[0];
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static volatile int8_t last_rssi = 0;
|
|
||||||
static volatile uint8_t last_corr_lqi = 0;
|
|
||||||
|
|
||||||
extern int32_t rat_offset;
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
/* SFD timestamp in RTIMER ticks */
|
|
||||||
static volatile uint32_t last_packet_timestamp = 0;
|
|
||||||
/* SFD timestamp in RAT ticks (but 64 bits) */
|
|
||||||
static uint64_t last_rat_timestamp64 = 0;
|
|
||||||
|
|
||||||
/* For RAT overflow handling */
|
|
||||||
static struct ctimer rat_overflow_timer;
|
|
||||||
static volatile uint32_t rat_overflow_counter = 0;
|
|
||||||
static rtimer_clock_t last_rat_overflow = 0;
|
|
||||||
|
|
||||||
/* RAT has 32-bit register, overflows once 18 minutes */
|
|
||||||
#define RAT_RANGE 4294967296ull
|
|
||||||
/* approximate value */
|
|
||||||
#define RAT_OVERFLOW_PERIOD_SECONDS (60 * 18)
|
|
||||||
|
|
||||||
/* XXX: don't know what exactly is this, looks like the time to Tx 3 octets */
|
|
||||||
#define TIMESTAMP_OFFSET -(USEC_TO_RADIO(32 * 3) - 1) /* -95.75 usec */
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
/* Are we currently in poll mode? */
|
|
||||||
static uint8_t poll_mode = 0;
|
|
||||||
|
|
||||||
static rfc_CMD_IEEE_MOD_FILT_t filter_cmd;
|
static rfc_CMD_IEEE_MOD_FILT_t filter_cmd;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/*
|
/*
|
||||||
@ -256,27 +185,28 @@ static uint8_t cmd_ieee_rx_buf[RF_CMD_BUFFER_SIZE] CC_ALIGN(4);
|
|||||||
#define DATA_ENTRY_LENSZ_BYTE 1
|
#define DATA_ENTRY_LENSZ_BYTE 1
|
||||||
#define DATA_ENTRY_LENSZ_WORD 2 /* 2 bytes */
|
#define DATA_ENTRY_LENSZ_WORD 2 /* 2 bytes */
|
||||||
|
|
||||||
#define RX_BUF_SIZE 144
|
|
||||||
/* Four receive buffers entries with room for 1 IEEE802.15.4 frame in each */
|
|
||||||
static uint8_t rx_buf_0[RX_BUF_SIZE] CC_ALIGN(4);
|
|
||||||
static uint8_t rx_buf_1[RX_BUF_SIZE] CC_ALIGN(4);
|
|
||||||
static uint8_t rx_buf_2[RX_BUF_SIZE] CC_ALIGN(4);
|
|
||||||
static uint8_t rx_buf_3[RX_BUF_SIZE] CC_ALIGN(4);
|
|
||||||
|
|
||||||
#define RX_BUF_INCLUDE_CRC 1
|
|
||||||
#define RX_BUF_INCLUDE_RSSI 1
|
|
||||||
#define RX_BUF_INCLUDE_CORR 1
|
|
||||||
#define RX_BUF_INCLUDE_TIMESTAMP 1
|
|
||||||
|
|
||||||
/* The size of the metadata (excluding the packet length field) */
|
/* The size of the metadata (excluding the packet length field) */
|
||||||
#define RX_BUF_METADATA_SIZE \
|
#define RX_BUF_METADATA_SIZE \
|
||||||
(2 * RX_BUF_INCLUDE_CRC + RX_BUF_INCLUDE_RSSI + RX_BUF_INCLUDE_CORR + 4 * RX_BUF_INCLUDE_TIMESTAMP)
|
(2 * RF_CORE_RX_BUF_INCLUDE_CRC \
|
||||||
|
+ RF_CORE_RX_BUF_INCLUDE_RSSI \
|
||||||
|
+ RF_CORE_RX_BUF_INCLUDE_CORR \
|
||||||
|
+ 4 * RF_CORE_RX_BUF_INCLUDE_TIMESTAMP)
|
||||||
|
|
||||||
/* The offset of the packet length in a rx buffer */
|
/* The offset of the packet length in a rx buffer */
|
||||||
#define RX_BUF_LENGTH_OFFSET sizeof(rfc_dataEntry_t)
|
#define RX_BUF_LENGTH_OFFSET sizeof(rfc_dataEntry_t)
|
||||||
/* The offset of the packet data in a rx buffer */
|
/* The offset of the packet data in a rx buffer */
|
||||||
#define RX_BUF_DATA_OFFSET (RX_BUF_LENGTH_OFFSET + 1)
|
#define RX_BUF_DATA_OFFSET (RX_BUF_LENGTH_OFFSET + 1)
|
||||||
|
|
||||||
|
#define RX_BUF_SIZE (RX_BUF_DATA_OFFSET \
|
||||||
|
+ NETSTACK_RADIO_MAX_PAYLOAD_LEN \
|
||||||
|
+ RX_BUF_METADATA_SIZE)
|
||||||
|
|
||||||
|
/* Four receive buffers entries with room for 1 IEEE802.15.4 frame in each */
|
||||||
|
static uint8_t rx_buf_0[RX_BUF_SIZE] CC_ALIGN(4);
|
||||||
|
static uint8_t rx_buf_1[RX_BUF_SIZE] CC_ALIGN(4);
|
||||||
|
static uint8_t rx_buf_2[RX_BUF_SIZE] CC_ALIGN(4);
|
||||||
|
static uint8_t rx_buf_3[RX_BUF_SIZE] CC_ALIGN(4);
|
||||||
|
|
||||||
/* The RX Data Queue */
|
/* The RX Data Queue */
|
||||||
static dataQueue_t rx_data_queue = { 0 };
|
static dataQueue_t rx_data_queue = { 0 };
|
||||||
|
|
||||||
@ -358,8 +288,8 @@ transmitting(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if((cmd.currentRssi == RF_CMD_CCA_REQ_RSSI_UNKNOWN) &&
|
if((cmd.currentRssi == RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN) &&
|
||||||
(cmd.ccaInfo.ccaEnergy == RF_CMD_CCA_REQ_CCA_STATE_BUSY)) {
|
(cmd.ccaInfo.ccaEnergy == RF_CORE_CMD_CCA_REQ_CCA_STATE_BUSY)) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -368,12 +298,12 @@ transmitting(void)
|
|||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/**
|
/**
|
||||||
* \brief Returns CCA information
|
* \brief Returns CCA information
|
||||||
* \return RF_GET_CCA_INFO_ERROR if the RF was not on
|
* \return RF_CORE_GET_CCA_INFO_ERROR if the RF was not on
|
||||||
* \return On success, the return value is formatted as per the ccaInfo field
|
* \return On success, the return value is formatted as per the ccaInfo field
|
||||||
* of CMD_IEEE_CCA_REQ
|
* of CMD_IEEE_CCA_REQ
|
||||||
*
|
*
|
||||||
* It is the caller's responsibility to make sure the RF is on. This function
|
* It is the caller's responsibility to make sure the RF is on. This function
|
||||||
* will return RF_GET_CCA_INFO_ERROR if the RF is off
|
* will return RF_CORE_GET_CCA_INFO_ERROR if the RF is off
|
||||||
*
|
*
|
||||||
* This function will in fact wait for a valid CCA state
|
* This function will in fact wait for a valid CCA state
|
||||||
*/
|
*/
|
||||||
@ -385,20 +315,20 @@ get_cca_info(void)
|
|||||||
|
|
||||||
if(!rf_is_on()) {
|
if(!rf_is_on()) {
|
||||||
PRINTF("get_cca_info: Not on\n");
|
PRINTF("get_cca_info: Not on\n");
|
||||||
return RF_GET_CCA_INFO_ERROR;
|
return RF_CORE_GET_CCA_INFO_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(&cmd, 0x00, sizeof(cmd));
|
memset(&cmd, 0x00, sizeof(cmd));
|
||||||
cmd.ccaInfo.ccaState = RF_CMD_CCA_REQ_CCA_STATE_INVALID;
|
cmd.ccaInfo.ccaState = RF_CORE_CMD_CCA_REQ_CCA_STATE_INVALID;
|
||||||
|
|
||||||
while(cmd.ccaInfo.ccaState == RF_CMD_CCA_REQ_CCA_STATE_INVALID) {
|
while(cmd.ccaInfo.ccaState == RF_CORE_CMD_CCA_REQ_CCA_STATE_INVALID) {
|
||||||
memset(&cmd, 0x00, sizeof(cmd));
|
memset(&cmd, 0x00, sizeof(cmd));
|
||||||
cmd.commandNo = CMD_IEEE_CCA_REQ;
|
cmd.commandNo = CMD_IEEE_CCA_REQ;
|
||||||
|
|
||||||
if(rf_core_send_cmd((uint32_t)&cmd, &cmd_status) == RF_CORE_CMD_ERROR) {
|
if(rf_core_send_cmd((uint32_t)&cmd, &cmd_status) == RF_CORE_CMD_ERROR) {
|
||||||
PRINTF("get_cca_info: CMDSTA=0x%08lx\n", cmd_status);
|
PRINTF("get_cca_info: CMDSTA=0x%08lx\n", cmd_status);
|
||||||
|
|
||||||
return RF_GET_CCA_INFO_ERROR;
|
return RF_CORE_GET_CCA_INFO_ERROR;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -425,14 +355,14 @@ get_rssi(void)
|
|||||||
was_off = 1;
|
was_off = 1;
|
||||||
if(on() != RF_CORE_CMD_OK) {
|
if(on() != RF_CORE_CMD_OK) {
|
||||||
PRINTF("get_rssi: on() failed\n");
|
PRINTF("get_rssi: on() failed\n");
|
||||||
return RF_CMD_CCA_REQ_RSSI_UNKNOWN;
|
return RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(&cmd, 0x00, sizeof(cmd));
|
memset(&cmd, 0x00, sizeof(cmd));
|
||||||
cmd.ccaInfo.ccaEnergy = RF_CMD_CCA_REQ_CCA_STATE_INVALID;
|
cmd.ccaInfo.ccaEnergy = RF_CORE_CMD_CCA_REQ_CCA_STATE_INVALID;
|
||||||
|
|
||||||
while(cmd.ccaInfo.ccaEnergy == RF_CMD_CCA_REQ_CCA_STATE_INVALID) {
|
while(cmd.ccaInfo.ccaEnergy == RF_CORE_CMD_CCA_REQ_CCA_STATE_INVALID) {
|
||||||
memset(&cmd, 0x00, sizeof(cmd));
|
memset(&cmd, 0x00, sizeof(cmd));
|
||||||
cmd.commandNo = CMD_IEEE_CCA_REQ;
|
cmd.commandNo = CMD_IEEE_CCA_REQ;
|
||||||
|
|
||||||
@ -440,7 +370,7 @@ get_rssi(void)
|
|||||||
PRINTF("get_rssi: CMDSTA=0x%08lx\n", cmd_status);
|
PRINTF("get_rssi: CMDSTA=0x%08lx\n", cmd_status);
|
||||||
|
|
||||||
/* Make sure to return RSSI unknown */
|
/* Make sure to return RSSI unknown */
|
||||||
cmd.currentRssi = RF_CMD_CCA_REQ_RSSI_UNKNOWN;
|
cmd.currentRssi = RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -558,8 +488,8 @@ rf_cmd_ieee_rx()
|
|||||||
return RF_CORE_CMD_ERROR;
|
return RF_CORE_CMD_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
LIMITED_BUSYWAIT(RF_RADIO_OP_GET_STATUS(cmd_ieee_rx_buf) != RF_CORE_RADIO_OP_STATUS_ACTIVE,
|
RTIMER_BUSYWAIT_UNTIL(RF_RADIO_OP_GET_STATUS(cmd_ieee_rx_buf) == RF_CORE_RADIO_OP_STATUS_ACTIVE,
|
||||||
ENTER_RX_WAIT_TIMEOUT);
|
RF_CORE_ENTER_RX_TIMEOUT);
|
||||||
|
|
||||||
/* Wait to enter RX */
|
/* Wait to enter RX */
|
||||||
if(RF_RADIO_OP_GET_STATUS(cmd_ieee_rx_buf) != RF_CORE_RADIO_OP_STATUS_ACTIVE) {
|
if(RF_RADIO_OP_GET_STATUS(cmd_ieee_rx_buf) != RF_CORE_RADIO_OP_STATUS_ACTIVE) {
|
||||||
@ -615,11 +545,11 @@ init_rf_params(void)
|
|||||||
cmd->rxConfig.bAutoFlushCrc = 1;
|
cmd->rxConfig.bAutoFlushCrc = 1;
|
||||||
cmd->rxConfig.bAutoFlushIgn = 0;
|
cmd->rxConfig.bAutoFlushIgn = 0;
|
||||||
cmd->rxConfig.bIncludePhyHdr = 0;
|
cmd->rxConfig.bIncludePhyHdr = 0;
|
||||||
cmd->rxConfig.bIncludeCrc = RX_BUF_INCLUDE_CRC;
|
cmd->rxConfig.bIncludeCrc = RF_CORE_RX_BUF_INCLUDE_CRC;
|
||||||
cmd->rxConfig.bAppendRssi = RX_BUF_INCLUDE_RSSI;
|
cmd->rxConfig.bAppendRssi = RF_CORE_RX_BUF_INCLUDE_RSSI;
|
||||||
cmd->rxConfig.bAppendCorrCrc = RX_BUF_INCLUDE_CORR;
|
cmd->rxConfig.bAppendCorrCrc = RF_CORE_RX_BUF_INCLUDE_CORR;
|
||||||
cmd->rxConfig.bAppendSrcInd = 0;
|
cmd->rxConfig.bAppendSrcInd = 0;
|
||||||
cmd->rxConfig.bAppendTimestamp = RX_BUF_INCLUDE_TIMESTAMP;
|
cmd->rxConfig.bAppendTimestamp = RF_CORE_RX_BUF_INCLUDE_TIMESTAMP;
|
||||||
|
|
||||||
cmd->pRxQ = &rx_data_queue;
|
cmd->pRxQ = &rx_data_queue;
|
||||||
cmd->pOutput = (rfc_ieeeRxOutput_t *)rf_stats;
|
cmd->pOutput = (rfc_ieeeRxOutput_t *)rf_stats;
|
||||||
@ -714,7 +644,7 @@ rx_off(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Wait for ongoing ACK TX to finish */
|
/* Wait for ongoing ACK TX to finish */
|
||||||
LIMITED_BUSYWAIT(transmitting(), TX_FINISH_WAIT_TIMEOUT);
|
RTIMER_BUSYWAIT_UNTIL(!transmitting(), RF_CORE_TX_FINISH_TIMEOUT);
|
||||||
|
|
||||||
/* Send a CMD_ABORT command to RF Core */
|
/* Send a CMD_ABORT command to RF Core */
|
||||||
if(rf_core_send_cmd(CMDR_DIR_CMD(CMD_ABORT), &cmd_status) != RF_CORE_CMD_OK) {
|
if(rf_core_send_cmd(CMDR_DIR_CMD(CMD_ABORT), &cmd_status) != RF_CORE_CMD_OK) {
|
||||||
@ -722,7 +652,7 @@ rx_off(void)
|
|||||||
/* Continue nonetheless */
|
/* Continue nonetheless */
|
||||||
}
|
}
|
||||||
|
|
||||||
LIMITED_BUSYWAIT(rf_is_on(), RF_TURN_OFF_WAIT_TIMEOUT);
|
RTIMER_BUSYWAIT_UNTIL(!rf_is_on(), RF_CORE_TURN_OFF_TIMEOUT);
|
||||||
|
|
||||||
if(RF_RADIO_OP_GET_STATUS(cmd_ieee_rx_buf) == IEEE_DONE_STOPPED ||
|
if(RF_RADIO_OP_GET_STATUS(cmd_ieee_rx_buf) == IEEE_DONE_STOPPED ||
|
||||||
RF_RADIO_OP_GET_STATUS(cmd_ieee_rx_buf) == IEEE_DONE_ABORT) {
|
RF_RADIO_OP_GET_STATUS(cmd_ieee_rx_buf) == IEEE_DONE_ABORT) {
|
||||||
@ -773,8 +703,8 @@ soft_off(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
LIMITED_BUSYWAIT((cmd->status & RF_CORE_RADIO_OP_MASKED_STATUS) ==
|
RTIMER_BUSYWAIT_UNTIL((cmd->status & RF_CORE_RADIO_OP_MASKED_STATUS) !=
|
||||||
RF_CORE_RADIO_OP_MASKED_STATUS_RUNNING, RF_TURN_OFF_WAIT_TIMEOUT);
|
RF_CORE_RADIO_OP_MASKED_STATUS_RUNNING, RF_CORE_TURN_OFF_TIMEOUT);
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static uint8_t
|
static uint8_t
|
||||||
@ -791,71 +721,10 @@ soft_on(void)
|
|||||||
static const rf_core_primary_mode_t mode_ieee = {
|
static const rf_core_primary_mode_t mode_ieee = {
|
||||||
soft_off,
|
soft_off,
|
||||||
soft_on,
|
soft_on,
|
||||||
|
rf_is_on,
|
||||||
|
RAT_TIMESTAMP_OFFSET_2_4_GHZ
|
||||||
};
|
};
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static uint8_t
|
|
||||||
check_rat_overflow(bool first_time)
|
|
||||||
{
|
|
||||||
static uint32_t last_value;
|
|
||||||
uint32_t current_value;
|
|
||||||
uint8_t interrupts_disabled;
|
|
||||||
|
|
||||||
/* Bail out if the RF is not on */
|
|
||||||
if(!rf_is_on()) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
interrupts_disabled = ti_lib_int_master_disable();
|
|
||||||
if(first_time) {
|
|
||||||
last_value = HWREG(RFC_RAT_BASE + RATCNT);
|
|
||||||
} else {
|
|
||||||
current_value = HWREG(RFC_RAT_BASE + RATCNT);
|
|
||||||
if(current_value + RAT_RANGE / 4 < last_value) {
|
|
||||||
/* Overflow detected */
|
|
||||||
last_rat_overflow = RTIMER_NOW();
|
|
||||||
rat_overflow_counter++;
|
|
||||||
}
|
|
||||||
last_value = current_value;
|
|
||||||
}
|
|
||||||
if(!interrupts_disabled) {
|
|
||||||
ti_lib_int_master_enable();
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
static void
|
|
||||||
handle_rat_overflow(void *unused)
|
|
||||||
{
|
|
||||||
uint8_t success;
|
|
||||||
uint8_t was_off = 0;
|
|
||||||
|
|
||||||
if(!rf_is_on()) {
|
|
||||||
was_off = 1;
|
|
||||||
if(on() != RF_CORE_CMD_OK) {
|
|
||||||
PRINTF("overflow: on() failed\n");
|
|
||||||
ctimer_set(&rat_overflow_timer, CLOCK_SECOND,
|
|
||||||
handle_rat_overflow, NULL);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
success = check_rat_overflow(false);
|
|
||||||
|
|
||||||
if(was_off) {
|
|
||||||
off();
|
|
||||||
}
|
|
||||||
|
|
||||||
if(success) {
|
|
||||||
/* Retry after half of the interval */
|
|
||||||
ctimer_set(&rat_overflow_timer, RAT_OVERFLOW_PERIOD_SECONDS * CLOCK_SECOND / 2,
|
|
||||||
handle_rat_overflow, NULL);
|
|
||||||
} else {
|
|
||||||
/* Retry sooner */
|
|
||||||
ctimer_set(&rat_overflow_timer, CLOCK_SECOND,
|
|
||||||
handle_rat_overflow, NULL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
static int
|
static int
|
||||||
init(void)
|
init(void)
|
||||||
{
|
{
|
||||||
@ -889,9 +758,7 @@ init(void)
|
|||||||
|
|
||||||
rf_core_primary_mode_register(&mode_ieee);
|
rf_core_primary_mode_register(&mode_ieee);
|
||||||
|
|
||||||
check_rat_overflow(true);
|
rf_core_rat_init();
|
||||||
ctimer_set(&rat_overflow_timer, RAT_OVERFLOW_PERIOD_SECONDS * CLOCK_SECOND / 2,
|
|
||||||
handle_rat_overflow, NULL);
|
|
||||||
|
|
||||||
process_start(&rf_core_process, NULL);
|
process_start(&rf_core_process, NULL);
|
||||||
return 1;
|
return 1;
|
||||||
@ -935,7 +802,7 @@ transmit(unsigned short transmit_len)
|
|||||||
do {
|
do {
|
||||||
tx_active = transmitting();
|
tx_active = transmitting();
|
||||||
} while(tx_active == 1 &&
|
} while(tx_active == 1 &&
|
||||||
(RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + TX_WAIT_TIMEOUT)));
|
(RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + RF_CORE_TX_TIMEOUT)));
|
||||||
|
|
||||||
if(tx_active) {
|
if(tx_active) {
|
||||||
PRINTF("transmit: Already TXing and wait timed out\n");
|
PRINTF("transmit: Already TXing and wait timed out\n");
|
||||||
@ -957,7 +824,7 @@ transmit(unsigned short transmit_len)
|
|||||||
cmd.startTrigger.triggerType = TRIG_NOW;
|
cmd.startTrigger.triggerType = TRIG_NOW;
|
||||||
|
|
||||||
/* Enable the LAST_FG_COMMAND_DONE interrupt, which will wake us up */
|
/* Enable the LAST_FG_COMMAND_DONE interrupt, which will wake us up */
|
||||||
rf_core_cmd_done_en(true, poll_mode);
|
rf_core_cmd_done_en(true);
|
||||||
|
|
||||||
ret = rf_core_send_cmd((uint32_t)&cmd, &cmd_status);
|
ret = rf_core_send_cmd((uint32_t)&cmd, &cmd_status);
|
||||||
|
|
||||||
@ -973,7 +840,7 @@ transmit(unsigned short transmit_len)
|
|||||||
* 1) make the `lpm_sleep()` call here unconditional;
|
* 1) make the `lpm_sleep()` call here unconditional;
|
||||||
* 2) change the radio ISR priority to allow radio ISR to interrupt rtimer ISR.
|
* 2) change the radio ISR priority to allow radio ISR to interrupt rtimer ISR.
|
||||||
*/
|
*/
|
||||||
if(!poll_mode) {
|
if(!rf_core_poll_mode) {
|
||||||
lpm_sleep();
|
lpm_sleep();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1007,7 +874,7 @@ transmit(unsigned short transmit_len)
|
|||||||
* Disable LAST_FG_COMMAND_DONE interrupt. We don't really care about it
|
* Disable LAST_FG_COMMAND_DONE interrupt. We don't really care about it
|
||||||
* except when we are transmitting
|
* except when we are transmitting
|
||||||
*/
|
*/
|
||||||
rf_core_cmd_done_dis(poll_mode);
|
rf_core_cmd_done_dis();
|
||||||
|
|
||||||
if(was_off) {
|
if(was_off) {
|
||||||
off();
|
off();
|
||||||
@ -1036,46 +903,6 @@ release_data_entry(void)
|
|||||||
rx_read_entry = entry->pNextEntry;
|
rx_read_entry = entry->pNextEntry;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static uint32_t
|
|
||||||
calc_last_packet_timestamp(uint32_t rat_timestamp)
|
|
||||||
{
|
|
||||||
uint64_t rat_timestamp64;
|
|
||||||
uint32_t adjusted_overflow_counter;
|
|
||||||
uint8_t was_off = 0;
|
|
||||||
|
|
||||||
if(!rf_is_on()) {
|
|
||||||
was_off = 1;
|
|
||||||
on();
|
|
||||||
}
|
|
||||||
|
|
||||||
if(rf_is_on()) {
|
|
||||||
check_rat_overflow(false);
|
|
||||||
if(was_off) {
|
|
||||||
off();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
adjusted_overflow_counter = rat_overflow_counter;
|
|
||||||
|
|
||||||
/* if the timestamp is large and the last oveflow was recently,
|
|
||||||
assume that the timestamp refers to the time before the overflow */
|
|
||||||
if(rat_timestamp > (uint32_t)(RAT_RANGE * 3 / 4)) {
|
|
||||||
if(RTIMER_CLOCK_LT(RTIMER_NOW(),
|
|
||||||
last_rat_overflow + RAT_OVERFLOW_PERIOD_SECONDS * RTIMER_SECOND / 4)) {
|
|
||||||
adjusted_overflow_counter--;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* add the overflowed time to the timestamp */
|
|
||||||
rat_timestamp64 = rat_timestamp + RAT_RANGE * adjusted_overflow_counter;
|
|
||||||
/* correct timestamp so that it refers to the end of the SFD */
|
|
||||||
rat_timestamp64 += TIMESTAMP_OFFSET;
|
|
||||||
|
|
||||||
last_rat_timestamp64 = rat_timestamp64 - rat_offset;
|
|
||||||
|
|
||||||
return RADIO_TO_RTIMER(rat_timestamp64 - rat_offset);
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
static int
|
static int
|
||||||
read_frame(void *buf, unsigned short buf_len)
|
read_frame(void *buf, unsigned short buf_len)
|
||||||
{
|
{
|
||||||
@ -1111,20 +938,20 @@ read_frame(void *buf, unsigned short buf_len)
|
|||||||
|
|
||||||
memcpy(buf, (uint8_t *)rx_read_entry + RX_BUF_DATA_OFFSET, len);
|
memcpy(buf, (uint8_t *)rx_read_entry + RX_BUF_DATA_OFFSET, len);
|
||||||
|
|
||||||
last_rssi = (int8_t)rx_read_entry[RX_BUF_DATA_OFFSET + len + 2];
|
rf_core_last_rssi = (int8_t)rx_read_entry[RX_BUF_DATA_OFFSET + len];
|
||||||
last_corr_lqi = (uint8_t)rx_read_entry[RX_BUF_DATA_OFFSET + len + 3] & STATUS_CORRELATION;
|
rf_core_last_corr_lqi = (uint8_t)rx_read_entry[RX_BUF_DATA_OFFSET + len + 1] & STATUS_CORRELATION;
|
||||||
|
|
||||||
/* get the timestamp */
|
/* get the timestamp */
|
||||||
memcpy(&rat_timestamp, (uint8_t *)rx_read_entry + RX_BUF_DATA_OFFSET + len + 4, 4);
|
memcpy(&rat_timestamp, (uint8_t *)rx_read_entry + RX_BUF_DATA_OFFSET + len + 2, 4);
|
||||||
|
|
||||||
last_packet_timestamp = calc_last_packet_timestamp(rat_timestamp);
|
rf_core_last_packet_timestamp = rf_core_convert_rat_to_rtimer(rat_timestamp);
|
||||||
|
|
||||||
if(!poll_mode) {
|
if(!rf_core_poll_mode) {
|
||||||
/* Not in poll mode: packetbuf should not be accessed in interrupt context.
|
/* Not in poll mode: packetbuf should not be accessed in interrupt context.
|
||||||
* In poll mode, the last packet RSSI and link quality can be obtained through
|
* In poll mode, the last packet RSSI and link quality can be obtained through
|
||||||
* RADIO_PARAM_LAST_RSSI and RADIO_PARAM_LAST_LINK_QUALITY */
|
* RADIO_PARAM_LAST_RSSI and RADIO_PARAM_LAST_LINK_QUALITY */
|
||||||
packetbuf_set_attr(PACKETBUF_ATTR_RSSI, last_rssi);
|
packetbuf_set_attr(PACKETBUF_ATTR_RSSI, rf_core_last_rssi);
|
||||||
packetbuf_set_attr(PACKETBUF_ATTR_LINK_QUALITY, last_corr_lqi);
|
packetbuf_set_attr(PACKETBUF_ATTR_LINK_QUALITY, rf_core_last_corr_lqi);
|
||||||
}
|
}
|
||||||
|
|
||||||
release_data_entry();
|
release_data_entry();
|
||||||
@ -1137,7 +964,7 @@ channel_clear(void)
|
|||||||
{
|
{
|
||||||
uint8_t was_off = 0;
|
uint8_t was_off = 0;
|
||||||
uint8_t cca_info;
|
uint8_t cca_info;
|
||||||
int ret = RF_CCA_CLEAR;
|
int ret = RF_CORE_CCA_CLEAR;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we are in the middle of a BLE operation, we got called by ContikiMAC
|
* If we are in the middle of a BLE operation, we got called by ContikiMAC
|
||||||
@ -1145,7 +972,7 @@ channel_clear(void)
|
|||||||
*/
|
*/
|
||||||
if(rf_ble_is_active() == RF_BLE_ACTIVE) {
|
if(rf_ble_is_active() == RF_BLE_ACTIVE) {
|
||||||
PRINTF("channel_clear: Interrupt context but BLE in progress\n");
|
PRINTF("channel_clear: Interrupt context but BLE in progress\n");
|
||||||
return RF_CCA_CLEAR;
|
return RF_CORE_CCA_CLEAR;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rf_is_on()) {
|
if(rf_is_on()) {
|
||||||
@ -1157,7 +984,7 @@ channel_clear(void)
|
|||||||
*
|
*
|
||||||
* We could probably even simply return that the channel is clear
|
* We could probably even simply return that the channel is clear
|
||||||
*/
|
*/
|
||||||
LIMITED_BUSYWAIT(transmitting(), TX_FINISH_WAIT_TIMEOUT);
|
RTIMER_BUSYWAIT_UNTIL(!transmitting(), RF_CORE_TX_FINISH_TIMEOUT);
|
||||||
} else {
|
} else {
|
||||||
was_off = 1;
|
was_off = 1;
|
||||||
if(on() != RF_CORE_CMD_OK) {
|
if(on() != RF_CORE_CMD_OK) {
|
||||||
@ -1165,21 +992,21 @@ channel_clear(void)
|
|||||||
if(was_off) {
|
if(was_off) {
|
||||||
off();
|
off();
|
||||||
}
|
}
|
||||||
return RF_CCA_CLEAR;
|
return RF_CORE_CCA_CLEAR;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cca_info = get_cca_info();
|
cca_info = get_cca_info();
|
||||||
|
|
||||||
if(cca_info == RF_GET_CCA_INFO_ERROR) {
|
if(cca_info == RF_CORE_GET_CCA_INFO_ERROR) {
|
||||||
PRINTF("channel_clear: CCA error\n");
|
PRINTF("channel_clear: CCA error\n");
|
||||||
ret = RF_CCA_CLEAR;
|
ret = RF_CORE_CCA_CLEAR;
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* cca_info bits 1:0 - ccaStatus
|
* cca_info bits 1:0 - ccaStatus
|
||||||
* Return 1 (clear) if idle or invalid.
|
* Return 1 (clear) if idle or invalid.
|
||||||
*/
|
*/
|
||||||
ret = (cca_info & 0x03) != RF_CMD_CCA_REQ_CCA_STATE_BUSY;
|
ret = (cca_info & 0x03) != RF_CORE_CMD_CCA_REQ_CCA_STATE_BUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(was_off) {
|
if(was_off) {
|
||||||
@ -1218,12 +1045,12 @@ receiving_packet(void)
|
|||||||
cca_info = get_cca_info();
|
cca_info = get_cca_info();
|
||||||
|
|
||||||
/* If we can't read CCA info, return "not receiving" */
|
/* If we can't read CCA info, return "not receiving" */
|
||||||
if(cca_info == RF_GET_CCA_INFO_ERROR) {
|
if(cca_info == RF_CORE_GET_CCA_INFO_ERROR) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If sync has been seen, return 1 (receiving) */
|
/* If sync has been seen, return 1 (receiving) */
|
||||||
if(cca_info & RF_CMD_CCA_REQ_CCA_SYNC_BUSY) {
|
if(cca_info & RF_CORE_CMD_CCA_REQ_CCA_SYNC_BUSY) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1241,7 +1068,7 @@ pending_packet(void)
|
|||||||
if(entry->status == DATA_ENTRY_STATUS_FINISHED
|
if(entry->status == DATA_ENTRY_STATUS_FINISHED
|
||||||
|| entry->status == DATA_ENTRY_STATUS_BUSY) {
|
|| entry->status == DATA_ENTRY_STATUS_BUSY) {
|
||||||
rv = 1;
|
rv = 1;
|
||||||
if(!poll_mode) {
|
if(!rf_core_poll_mode) {
|
||||||
process_poll(&rf_core_process);
|
process_poll(&rf_core_process);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1292,7 +1119,7 @@ on(void)
|
|||||||
return RF_CORE_CMD_ERROR;
|
return RF_CORE_CMD_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
rf_core_setup_interrupts(poll_mode);
|
rf_core_setup_interrupts();
|
||||||
|
|
||||||
if(rf_radio_setup() != RF_CORE_CMD_OK) {
|
if(rf_radio_setup() != RF_CORE_CMD_OK) {
|
||||||
PRINTF("on: radio_setup() failed\n");
|
PRINTF("on: radio_setup() failed\n");
|
||||||
@ -1314,7 +1141,7 @@ off(void)
|
|||||||
return RF_CORE_CMD_OK;
|
return RF_CORE_CMD_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
LIMITED_BUSYWAIT(transmitting(), TX_FINISH_WAIT_TIMEOUT);
|
RTIMER_BUSYWAIT_UNTIL(!transmitting(), RF_CORE_TX_FINISH_TIMEOUT);
|
||||||
|
|
||||||
/* stopping the rx explicitly results in lower sleep-mode power usage */
|
/* stopping the rx explicitly results in lower sleep-mode power usage */
|
||||||
rx_off();
|
rx_off();
|
||||||
@ -1394,7 +1221,7 @@ get_value(radio_param_t param, radio_value_t *value)
|
|||||||
if(cmd->frameFiltOpt.autoAckEn) {
|
if(cmd->frameFiltOpt.autoAckEn) {
|
||||||
*value |= RADIO_RX_MODE_AUTOACK;
|
*value |= RADIO_RX_MODE_AUTOACK;
|
||||||
}
|
}
|
||||||
if(poll_mode) {
|
if(rf_core_poll_mode) {
|
||||||
*value |= RADIO_RX_MODE_POLL_MODE;
|
*value |= RADIO_RX_MODE_POLL_MODE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1411,7 +1238,7 @@ get_value(radio_param_t param, radio_value_t *value)
|
|||||||
case RADIO_PARAM_RSSI:
|
case RADIO_PARAM_RSSI:
|
||||||
*value = get_rssi();
|
*value = get_rssi();
|
||||||
|
|
||||||
if(*value == RF_CMD_CCA_REQ_RSSI_UNKNOWN) {
|
if(*value == RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN) {
|
||||||
return RADIO_RESULT_ERROR;
|
return RADIO_RESULT_ERROR;
|
||||||
} else {
|
} else {
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
@ -1429,10 +1256,25 @@ get_value(radio_param_t param, radio_value_t *value)
|
|||||||
*value = OUTPUT_POWER_MAX;
|
*value = OUTPUT_POWER_MAX;
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
case RADIO_PARAM_LAST_RSSI:
|
case RADIO_PARAM_LAST_RSSI:
|
||||||
*value = last_rssi;
|
*value = rf_core_last_rssi;
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
case RADIO_PARAM_LAST_LINK_QUALITY:
|
case RADIO_PARAM_LAST_LINK_QUALITY:
|
||||||
*value = last_corr_lqi;
|
*value = rf_core_last_corr_lqi;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_PHY_OVERHEAD:
|
||||||
|
*value = (radio_value_t)RADIO_PHY_OVERHEAD;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_BYTE_AIR_TIME:
|
||||||
|
*value = (radio_value_t)RADIO_BYTE_AIR_TIME;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_DELAY_BEFORE_TX:
|
||||||
|
*value = (radio_value_t)RADIO_DELAY_BEFORE_TX;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_DELAY_BEFORE_RX:
|
||||||
|
*value = (radio_value_t)RADIO_DELAY_BEFORE_RX;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_DELAY_BEFORE_DETECT:
|
||||||
|
*value = (radio_value_t)RADIO_DELAY_BEFORE_DETECT;
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
default:
|
default:
|
||||||
return RADIO_RESULT_NOT_SUPPORTED;
|
return RADIO_RESULT_NOT_SUPPORTED;
|
||||||
@ -1498,9 +1340,9 @@ set_value(radio_param_t param, radio_value_t value)
|
|||||||
cmd->frameFiltOpt.bPanCoord = 0;
|
cmd->frameFiltOpt.bPanCoord = 0;
|
||||||
cmd->frameFiltOpt.bStrictLenFilter = 0;
|
cmd->frameFiltOpt.bStrictLenFilter = 0;
|
||||||
|
|
||||||
old_poll_mode = poll_mode;
|
old_poll_mode = rf_core_poll_mode;
|
||||||
poll_mode = (value & RADIO_RX_MODE_POLL_MODE) != 0;
|
rf_core_poll_mode = (value & RADIO_RX_MODE_POLL_MODE) != 0;
|
||||||
if(poll_mode == old_poll_mode) {
|
if(rf_core_poll_mode == old_poll_mode) {
|
||||||
uint32_t cmd_status;
|
uint32_t cmd_status;
|
||||||
|
|
||||||
/* do not turn the radio on and off, just send an update command */
|
/* do not turn the radio on and off, just send an update command */
|
||||||
@ -1552,7 +1394,7 @@ set_value(radio_param_t param, radio_value_t value)
|
|||||||
/* Restart the radio timer (RAT).
|
/* Restart the radio timer (RAT).
|
||||||
This causes resynchronization between RAT and RTC: useful for TSCH. */
|
This causes resynchronization between RAT and RTC: useful for TSCH. */
|
||||||
if(rf_core_restart_rat() == RF_CORE_CMD_OK) {
|
if(rf_core_restart_rat() == RF_CORE_CMD_OK) {
|
||||||
check_rat_overflow(false);
|
rf_core_check_rat_overflow();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rx_on() != RF_CORE_CMD_OK) {
|
if(rx_on() != RF_CORE_CMD_OK) {
|
||||||
@ -1590,7 +1432,7 @@ get_object(radio_param_t param, void *dest, size_t size)
|
|||||||
if(size != sizeof(rtimer_clock_t) || !dest) {
|
if(size != sizeof(rtimer_clock_t) || !dest) {
|
||||||
return RADIO_RESULT_INVALID_VALUE;
|
return RADIO_RESULT_INVALID_VALUE;
|
||||||
}
|
}
|
||||||
*(rtimer_clock_t *)dest = last_packet_timestamp;
|
*(rtimer_clock_t *)dest = rf_core_last_packet_timestamp;
|
||||||
|
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
}
|
}
|
||||||
|
@ -115,24 +115,6 @@
|
|||||||
*/
|
*/
|
||||||
#define RF_RADIO_OP_GET_STATUS(a) GET_FIELD_V(a, radioOp, status)
|
#define RF_RADIO_OP_GET_STATUS(a) GET_FIELD_V(a, radioOp, status)
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* Special value returned by CMD_IEEE_CCA_REQ when an RSSI is not available */
|
|
||||||
#define RF_CMD_CCA_REQ_RSSI_UNKNOWN -128
|
|
||||||
|
|
||||||
/* Used for the return value of channel_clear */
|
|
||||||
#define RF_CCA_CLEAR 1
|
|
||||||
#define RF_CCA_BUSY 0
|
|
||||||
|
|
||||||
/* Used as an error return value for get_cca_info */
|
|
||||||
#define RF_GET_CCA_INFO_ERROR 0xFF
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Values of the individual bits of the ccaInfo field in CMD_IEEE_CCA_REQ's
|
|
||||||
* status struct
|
|
||||||
*/
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_STATE_IDLE 0 /* 00 */
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_STATE_BUSY 1 /* 01 */
|
|
||||||
#define RF_CMD_CCA_REQ_CCA_STATE_INVALID 2 /* 10 */
|
|
||||||
|
|
||||||
#ifdef PROP_MODE_CONF_RSSI_THRESHOLD
|
#ifdef PROP_MODE_CONF_RSSI_THRESHOLD
|
||||||
#define PROP_MODE_RSSI_THRESHOLD PROP_MODE_CONF_RSSI_THRESHOLD
|
#define PROP_MODE_RSSI_THRESHOLD PROP_MODE_CONF_RSSI_THRESHOLD
|
||||||
#else
|
#else
|
||||||
@ -141,6 +123,8 @@
|
|||||||
|
|
||||||
static int8_t rssi_threshold = PROP_MODE_RSSI_THRESHOLD;
|
static int8_t rssi_threshold = PROP_MODE_RSSI_THRESHOLD;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
static volatile uint8_t is_receiving_packet;
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
static int on(void);
|
static int on(void);
|
||||||
static int off(void);
|
static int off(void);
|
||||||
|
|
||||||
@ -170,12 +154,6 @@ static rfc_propRxOutput_t rx_stats;
|
|||||||
#define DOT_4G_PHR_DW_BIT 0
|
#define DOT_4G_PHR_DW_BIT 0
|
||||||
#endif
|
#endif
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* How long to wait for an ongoing ACK TX to finish before starting frame TX */
|
|
||||||
#define TX_WAIT_TIMEOUT (RTIMER_SECOND >> 11)
|
|
||||||
|
|
||||||
/* How long to wait for the RF to enter RX in rf_cmd_ieee_rx */
|
|
||||||
#define ENTER_RX_WAIT_TIMEOUT (RTIMER_SECOND >> 10)
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
/* TX power table for the 431-527MHz band */
|
/* TX power table for the 431-527MHz band */
|
||||||
#ifdef PROP_MODE_CONF_TX_POWER_431_527
|
#ifdef PROP_MODE_CONF_TX_POWER_431_527
|
||||||
#define PROP_MODE_TX_POWER_431_527 PROP_MODE_CONF_TX_POWER_431_527
|
#define PROP_MODE_TX_POWER_431_527 PROP_MODE_CONF_TX_POWER_431_527
|
||||||
@ -222,12 +200,29 @@ static const prop_mode_tx_power_config_t *tx_power_current = &TX_POWER_DRIVER[1]
|
|||||||
#define DATA_ENTRY_LENSZ_BYTE 1
|
#define DATA_ENTRY_LENSZ_BYTE 1
|
||||||
#define DATA_ENTRY_LENSZ_WORD 2 /* 2 bytes */
|
#define DATA_ENTRY_LENSZ_WORD 2 /* 2 bytes */
|
||||||
|
|
||||||
|
/* The size of the metadata (excluding the packet length field) */
|
||||||
|
#define RX_BUF_METADATA_SIZE \
|
||||||
|
(CRC_LEN * RF_CORE_RX_BUF_INCLUDE_CRC \
|
||||||
|
+ RF_CORE_RX_BUF_INCLUDE_RSSI \
|
||||||
|
+ RF_CORE_RX_BUF_INCLUDE_CORR \
|
||||||
|
+ 4 * RF_CORE_RX_BUF_INCLUDE_TIMESTAMP)
|
||||||
|
|
||||||
|
/* The offset of the packet length in a rx buffer */
|
||||||
|
#define RX_BUF_LENGTH_OFFSET sizeof(rfc_dataEntry_t)
|
||||||
|
/* The offset of the packet data in a rx buffer */
|
||||||
|
#define RX_BUF_DATA_OFFSET (RX_BUF_LENGTH_OFFSET + DOT_4G_PHR_LEN)
|
||||||
|
|
||||||
|
#define ALIGN_TO_4(size) (((size) + 3) & ~3)
|
||||||
|
|
||||||
|
#define RX_BUF_SIZE ALIGN_TO_4(RX_BUF_DATA_OFFSET \
|
||||||
|
+ NETSTACK_RADIO_MAX_PAYLOAD_LEN \
|
||||||
|
+ RX_BUF_METADATA_SIZE)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* RX buffers.
|
* RX buffers.
|
||||||
* PROP_MODE_RX_BUF_CNT buffers of RX_BUF_SIZE bytes each. The start of each
|
* PROP_MODE_RX_BUF_CNT buffers of RX_BUF_SIZE bytes each. The start of each
|
||||||
* buffer must be 4-byte aligned, therefore RX_BUF_SIZE must divide by 4
|
* buffer must be 4-byte aligned, therefore RX_BUF_SIZE must divide by 4
|
||||||
*/
|
*/
|
||||||
#define RX_BUF_SIZE 140
|
|
||||||
static uint8_t rx_buf[PROP_MODE_RX_BUF_CNT][RX_BUF_SIZE] CC_ALIGN(4);
|
static uint8_t rx_buf[PROP_MODE_RX_BUF_CNT][RX_BUF_SIZE] CC_ALIGN(4);
|
||||||
|
|
||||||
/* The RX Data Queue */
|
/* The RX Data Queue */
|
||||||
@ -236,6 +231,12 @@ static dataQueue_t rx_data_queue = { 0 };
|
|||||||
/* Receive entry pointer to keep track of read items */
|
/* Receive entry pointer to keep track of read items */
|
||||||
volatile static uint8_t *rx_read_entry;
|
volatile static uint8_t *rx_read_entry;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/*
|
||||||
|
* Increasing this number causes unicast Tx immediately after broadcast Rx to have
|
||||||
|
* negative synchronization errors ("dr" in TSCH logs); decreasing it: the opposite.
|
||||||
|
*/
|
||||||
|
#define RAT_TIMESTAMP_OFFSET_SUB_GHZ USEC_TO_RADIO(160 * 6 - 240)
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
/* The outgoing frame buffer */
|
/* The outgoing frame buffer */
|
||||||
#define TX_BUF_PAYLOAD_LEN 180
|
#define TX_BUF_PAYLOAD_LEN 180
|
||||||
#define TX_BUF_HDR_LEN 2
|
#define TX_BUF_HDR_LEN 2
|
||||||
@ -272,13 +273,13 @@ get_rssi(void)
|
|||||||
was_off = 1;
|
was_off = 1;
|
||||||
if(on() != RF_CORE_CMD_OK) {
|
if(on() != RF_CORE_CMD_OK) {
|
||||||
PRINTF("get_rssi: on() failed\n");
|
PRINTF("get_rssi: on() failed\n");
|
||||||
return RF_CMD_CCA_REQ_RSSI_UNKNOWN;
|
return RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rssi = RF_CMD_CCA_REQ_RSSI_UNKNOWN;
|
rssi = RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN;
|
||||||
|
|
||||||
while((rssi == RF_CMD_CCA_REQ_RSSI_UNKNOWN || rssi == 0) && ++attempts < 10) {
|
while((rssi == RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN || rssi == 0) && ++attempts < 10) {
|
||||||
memset(&cmd, 0x00, sizeof(cmd));
|
memset(&cmd, 0x00, sizeof(cmd));
|
||||||
cmd.commandNo = CMD_GET_RSSI;
|
cmd.commandNo = CMD_GET_RSSI;
|
||||||
|
|
||||||
@ -420,13 +421,17 @@ static uint8_t
|
|||||||
rf_cmd_prop_rx()
|
rf_cmd_prop_rx()
|
||||||
{
|
{
|
||||||
uint32_t cmd_status;
|
uint32_t cmd_status;
|
||||||
rtimer_clock_t t0;
|
|
||||||
volatile rfc_CMD_PROP_RX_ADV_t *cmd_rx_adv;
|
volatile rfc_CMD_PROP_RX_ADV_t *cmd_rx_adv;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
cmd_rx_adv = (rfc_CMD_PROP_RX_ADV_t *)&smartrf_settings_cmd_prop_rx_adv;
|
cmd_rx_adv = (rfc_CMD_PROP_RX_ADV_t *)&smartrf_settings_cmd_prop_rx_adv;
|
||||||
cmd_rx_adv->status = RF_CORE_RADIO_OP_STATUS_IDLE;
|
cmd_rx_adv->status = RF_CORE_RADIO_OP_STATUS_IDLE;
|
||||||
|
|
||||||
|
cmd_rx_adv->rxConf.bIncludeCrc = RF_CORE_RX_BUF_INCLUDE_CRC;
|
||||||
|
cmd_rx_adv->rxConf.bAppendRssi = RF_CORE_RX_BUF_INCLUDE_RSSI;
|
||||||
|
cmd_rx_adv->rxConf.bAppendTimestamp = RF_CORE_RX_BUF_INCLUDE_TIMESTAMP;
|
||||||
|
cmd_rx_adv->rxConf.bAppendStatus = RF_CORE_RX_BUF_INCLUDE_CORR;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set the max Packet length. This is for the payload only, therefore
|
* Set the max Packet length. This is for the payload only, therefore
|
||||||
* 2047 - length offset
|
* 2047 - length offset
|
||||||
@ -441,10 +446,8 @@ rf_cmd_prop_rx()
|
|||||||
return RF_CORE_CMD_ERROR;
|
return RF_CORE_CMD_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
t0 = RTIMER_NOW();
|
RTIMER_BUSYWAIT_UNTIL(cmd_rx_adv->status == RF_CORE_RADIO_OP_STATUS_ACTIVE,
|
||||||
|
RF_CORE_ENTER_RX_TIMEOUT);
|
||||||
while(cmd_rx_adv->status != RF_CORE_RADIO_OP_STATUS_ACTIVE &&
|
|
||||||
(RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + ENTER_RX_WAIT_TIMEOUT)));
|
|
||||||
|
|
||||||
/* Wait to enter RX */
|
/* Wait to enter RX */
|
||||||
if(cmd_rx_adv->status != RF_CORE_RADIO_OP_STATUS_ACTIVE) {
|
if(cmd_rx_adv->status != RF_CORE_RADIO_OP_STATUS_ACTIVE) {
|
||||||
@ -506,13 +509,16 @@ rx_off_prop(void)
|
|||||||
return RF_CORE_CMD_OK;
|
return RF_CORE_CMD_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Wait for ongoing ACK TX to finish */
|
||||||
|
RTIMER_BUSYWAIT_UNTIL(!transmitting(), RF_CORE_TX_FINISH_TIMEOUT);
|
||||||
|
|
||||||
/* Send a CMD_ABORT command to RF Core */
|
/* Send a CMD_ABORT command to RF Core */
|
||||||
if(rf_core_send_cmd(CMDR_DIR_CMD(CMD_ABORT), &cmd_status) != RF_CORE_CMD_OK) {
|
if(rf_core_send_cmd(CMDR_DIR_CMD(CMD_ABORT), &cmd_status) != RF_CORE_CMD_OK) {
|
||||||
PRINTF("rx_off_prop: CMD_ABORT status=0x%08lx\n", cmd_status);
|
PRINTF("rx_off_prop: CMD_ABORT status=0x%08lx\n", cmd_status);
|
||||||
/* Continue nonetheless */
|
/* Continue nonetheless */
|
||||||
}
|
}
|
||||||
|
|
||||||
while(rf_is_on());
|
RTIMER_BUSYWAIT_UNTIL(!rf_is_on(), RF_CORE_TURN_OFF_TIMEOUT);
|
||||||
|
|
||||||
if(smartrf_settings_cmd_prop_rx_adv.status == PROP_DONE_STOPPED ||
|
if(smartrf_settings_cmd_prop_rx_adv.status == PROP_DONE_STOPPED ||
|
||||||
smartrf_settings_cmd_prop_rx_adv.status == PROP_DONE_ABORT) {
|
smartrf_settings_cmd_prop_rx_adv.status == PROP_DONE_ABORT) {
|
||||||
@ -583,8 +589,8 @@ soft_off_prop(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
while((cmd->status & RF_CORE_RADIO_OP_MASKED_STATUS) ==
|
RTIMER_BUSYWAIT_UNTIL((cmd->status & RF_CORE_RADIO_OP_MASKED_STATUS) !=
|
||||||
RF_CORE_RADIO_OP_MASKED_STATUS_RUNNING);
|
RF_CORE_RADIO_OP_MASKED_STATUS_RUNNING, RF_CORE_TURN_OFF_TIMEOUT);
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static uint8_t
|
static uint8_t
|
||||||
@ -606,6 +612,8 @@ soft_on_prop(void)
|
|||||||
static const rf_core_primary_mode_t mode_prop = {
|
static const rf_core_primary_mode_t mode_prop = {
|
||||||
soft_off_prop,
|
soft_off_prop,
|
||||||
soft_on_prop,
|
soft_on_prop,
|
||||||
|
rf_is_on,
|
||||||
|
RAT_TIMESTAMP_OFFSET_SUB_GHZ
|
||||||
};
|
};
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static int
|
static int
|
||||||
@ -637,10 +645,15 @@ init(void)
|
|||||||
return RF_CORE_CMD_ERROR;
|
return RF_CORE_CMD_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Enable the "sync word seen" interrupt */
|
||||||
|
ti_lib_rfc_hw_int_enable(RFC_DBELL_RFHWIEN_MDMSOFT);
|
||||||
|
|
||||||
ENERGEST_ON(ENERGEST_TYPE_LISTEN);
|
ENERGEST_ON(ENERGEST_TYPE_LISTEN);
|
||||||
|
|
||||||
rf_core_primary_mode_register(&mode_prop);
|
rf_core_primary_mode_register(&mode_prop);
|
||||||
|
|
||||||
|
rf_core_rat_init();
|
||||||
|
|
||||||
process_start(&rf_core_process, NULL);
|
process_start(&rf_core_process, NULL);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
@ -701,7 +714,7 @@ transmit(unsigned short transmit_len)
|
|||||||
rx_off_prop();
|
rx_off_prop();
|
||||||
|
|
||||||
/* Enable the LAST_COMMAND_DONE interrupt to wake us up */
|
/* Enable the LAST_COMMAND_DONE interrupt to wake us up */
|
||||||
rf_core_cmd_done_en(false, false);
|
rf_core_cmd_done_en(false);
|
||||||
|
|
||||||
ret = rf_core_send_cmd((uint32_t)cmd_tx_adv, &cmd_status);
|
ret = rf_core_send_cmd((uint32_t)cmd_tx_adv, &cmd_status);
|
||||||
|
|
||||||
@ -714,7 +727,14 @@ transmit(unsigned short transmit_len)
|
|||||||
/* Idle away while the command is running */
|
/* Idle away while the command is running */
|
||||||
while((cmd_tx_adv->status & RF_CORE_RADIO_OP_MASKED_STATUS)
|
while((cmd_tx_adv->status & RF_CORE_RADIO_OP_MASKED_STATUS)
|
||||||
== RF_CORE_RADIO_OP_MASKED_STATUS_RUNNING) {
|
== RF_CORE_RADIO_OP_MASKED_STATUS_RUNNING) {
|
||||||
lpm_sleep();
|
/* Note: for now sleeping while Tx'ing in polling mode is disabled.
|
||||||
|
* To enable it:
|
||||||
|
* 1) make the `lpm_sleep()` call here unconditional;
|
||||||
|
* 2) change the radio ISR priority to allow radio ISR to interrupt rtimer ISR.
|
||||||
|
*/
|
||||||
|
if(!rf_core_poll_mode) {
|
||||||
|
lpm_sleep();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(cmd_tx_adv->status == RF_CORE_RADIO_OP_STATUS_PROP_DONE_OK) {
|
if(cmd_tx_adv->status == RF_CORE_RADIO_OP_STATUS_PROP_DONE_OK) {
|
||||||
@ -743,7 +763,7 @@ transmit(unsigned short transmit_len)
|
|||||||
* Disable LAST_FG_COMMAND_DONE interrupt. We don't really care about it
|
* Disable LAST_FG_COMMAND_DONE interrupt. We don't really care about it
|
||||||
* except when we are transmitting
|
* except when we are transmitting
|
||||||
*/
|
*/
|
||||||
rf_core_cmd_done_dis(false);
|
rf_core_cmd_done_dis();
|
||||||
|
|
||||||
/* Workaround. Set status to IDLE */
|
/* Workaround. Set status to IDLE */
|
||||||
cmd_tx_adv->status = RF_CORE_RADIO_OP_STATUS_IDLE;
|
cmd_tx_adv->status = RF_CORE_RADIO_OP_STATUS_IDLE;
|
||||||
@ -764,47 +784,98 @@ send(const void *payload, unsigned short payload_len)
|
|||||||
return transmit(payload_len);
|
return transmit(payload_len);
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static int
|
static void
|
||||||
read_frame(void *buf, unsigned short buf_len)
|
release_data_entry(void)
|
||||||
{
|
{
|
||||||
int_master_status_t status;
|
|
||||||
rfc_dataEntryGeneral_t *entry = (rfc_dataEntryGeneral_t *)rx_read_entry;
|
rfc_dataEntryGeneral_t *entry = (rfc_dataEntryGeneral_t *)rx_read_entry;
|
||||||
uint8_t *data_ptr = &entry->data;
|
uint8_t *data_ptr = &entry->data;
|
||||||
int len = 0;
|
int_master_status_t interrupt_status;
|
||||||
|
|
||||||
if(entry->status == DATA_ENTRY_STATUS_FINISHED) {
|
/* Clear the length field (2 bytes) */
|
||||||
|
data_ptr[0] = 0;
|
||||||
|
data_ptr[1] = 0;
|
||||||
|
|
||||||
/*
|
/* Set status to 0 "Pending" in element */
|
||||||
* First 2 bytes in the data entry are the length.
|
entry->status = DATA_ENTRY_STATUS_PENDING;
|
||||||
* Our data entry consists of: Payload + RSSI (1 byte) + Status (1 byte)
|
rx_read_entry = entry->pNextEntry;
|
||||||
* This length includes all of those.
|
|
||||||
*/
|
|
||||||
len = (*(uint16_t *)data_ptr);
|
|
||||||
data_ptr += 2;
|
|
||||||
len -= 2;
|
|
||||||
|
|
||||||
if(len > 0) {
|
interrupt_status = critical_enter();
|
||||||
if(len <= buf_len) {
|
if(rf_core_rx_is_full) {
|
||||||
memcpy(buf, data_ptr, len);
|
rf_core_rx_is_full = false;
|
||||||
}
|
|
||||||
|
|
||||||
packetbuf_set_attr(PACKETBUF_ATTR_RSSI, (int8_t)data_ptr[len]);
|
|
||||||
packetbuf_set_attr(PACKETBUF_ATTR_LINK_QUALITY, 0x7F);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Move read entry pointer to next entry */
|
|
||||||
rx_read_entry = entry->pNextEntry;
|
|
||||||
entry->status = DATA_ENTRY_STATUS_PENDING;
|
|
||||||
}
|
|
||||||
|
|
||||||
status = critical_enter();
|
|
||||||
if(rx_is_full) {
|
|
||||||
rx_is_full = false;
|
|
||||||
PRINTF("RXQ was full, re-enabling radio!\n");
|
PRINTF("RXQ was full, re-enabling radio!\n");
|
||||||
rx_on_prop();
|
rx_on_prop();
|
||||||
}
|
}
|
||||||
critical_exit(status);
|
critical_exit(interrupt_status);
|
||||||
|
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
static int
|
||||||
|
read_frame(void *buf, unsigned short buf_len)
|
||||||
|
{
|
||||||
|
rfc_dataEntryGeneral_t *entry = (rfc_dataEntryGeneral_t *)rx_read_entry;
|
||||||
|
uint8_t *data_ptr = &entry->data;
|
||||||
|
int len = 0;
|
||||||
|
uint32_t rat_timestamp;
|
||||||
|
|
||||||
|
/* wait for entry to become finished */
|
||||||
|
rtimer_clock_t t0 = RTIMER_NOW();
|
||||||
|
while(entry->status == DATA_ENTRY_STATUS_BUSY
|
||||||
|
&& RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + (RTIMER_SECOND / 50)));
|
||||||
|
|
||||||
|
/* Make sure the flag is reset */
|
||||||
|
is_receiving_packet = 0;
|
||||||
|
|
||||||
|
if(entry->status != DATA_ENTRY_STATUS_FINISHED) {
|
||||||
|
/* No available data */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* First 2 bytes in the data entry are the length.
|
||||||
|
* Our data entry consists of:
|
||||||
|
* Payload + RSSI (1 byte) + Timestamp (4 bytes) + Status (1 byte)
|
||||||
|
* This length includes all of those.
|
||||||
|
*/
|
||||||
|
len = (*(uint16_t *)data_ptr);
|
||||||
|
|
||||||
|
if(len <= RX_BUF_METADATA_SIZE) {
|
||||||
|
PRINTF("RF: too short!");
|
||||||
|
|
||||||
|
release_data_entry();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
data_ptr += 2;
|
||||||
|
len -= RX_BUF_METADATA_SIZE;
|
||||||
|
|
||||||
|
if(len > buf_len) {
|
||||||
|
PRINTF("RF: too long\n");
|
||||||
|
|
||||||
|
release_data_entry();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(buf, data_ptr, len);
|
||||||
|
|
||||||
|
/* get the RSSI and status */
|
||||||
|
rf_core_last_rssi = (int8_t)data_ptr[len];
|
||||||
|
rf_core_last_corr_lqi = data_ptr[len + 5];
|
||||||
|
|
||||||
|
/* get the timestamp */
|
||||||
|
memcpy(&rat_timestamp, data_ptr + len + 1, 4);
|
||||||
|
|
||||||
|
rf_core_last_packet_timestamp = rf_core_convert_rat_to_rtimer(rat_timestamp);
|
||||||
|
|
||||||
|
if(!rf_core_poll_mode) {
|
||||||
|
/* Not in poll mode: packetbuf should not be accessed in interrupt context.
|
||||||
|
* In poll mode, the last packet RSSI and link quality can be obtained through
|
||||||
|
* RADIO_PARAM_LAST_RSSI and RADIO_PARAM_LAST_LINK_QUALITY */
|
||||||
|
packetbuf_set_attr(PACKETBUF_ATTR_RSSI, rf_core_last_rssi);
|
||||||
|
packetbuf_set_attr(PACKETBUF_ATTR_LINK_QUALITY, rf_core_last_corr_lqi);
|
||||||
|
}
|
||||||
|
|
||||||
|
release_data_entry();
|
||||||
|
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
@ -813,14 +884,14 @@ channel_clear(void)
|
|||||||
{
|
{
|
||||||
uint8_t was_off = 0;
|
uint8_t was_off = 0;
|
||||||
uint32_t cmd_status;
|
uint32_t cmd_status;
|
||||||
int8_t rssi = RF_CMD_CCA_REQ_RSSI_UNKNOWN;
|
int8_t rssi = RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we are in the middle of a BLE operation, we got called by ContikiMAC
|
* If we are in the middle of a BLE operation, we got called by ContikiMAC
|
||||||
* from within an interrupt context. Indicate a clear channel
|
* from within an interrupt context. Indicate a clear channel
|
||||||
*/
|
*/
|
||||||
if(rf_ble_is_active() == RF_BLE_ACTIVE) {
|
if(rf_ble_is_active() == RF_BLE_ACTIVE) {
|
||||||
return RF_CCA_CLEAR;
|
return RF_CORE_CCA_CLEAR;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!rf_core_is_accessible()) {
|
if(!rf_core_is_accessible()) {
|
||||||
@ -830,16 +901,16 @@ channel_clear(void)
|
|||||||
if(was_off) {
|
if(was_off) {
|
||||||
off();
|
off();
|
||||||
}
|
}
|
||||||
return RF_CCA_CLEAR;
|
return RF_CORE_CCA_CLEAR;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(transmitting()) {
|
if(transmitting()) {
|
||||||
PRINTF("channel_clear: called while in TX\n");
|
PRINTF("channel_clear: called while in TX\n");
|
||||||
return RF_CCA_CLEAR;
|
return RF_CORE_CCA_CLEAR;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while(rssi == RF_CMD_CCA_REQ_RSSI_UNKNOWN || rssi == 0) {
|
while(rssi == RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN || rssi == 0) {
|
||||||
if(rf_core_send_cmd(CMDR_DIR_CMD(CMD_GET_RSSI), &cmd_status)
|
if(rf_core_send_cmd(CMDR_DIR_CMD(CMD_GET_RSSI), &cmd_status)
|
||||||
!= RF_CORE_CMD_OK) {
|
!= RF_CORE_CMD_OK) {
|
||||||
break;
|
break;
|
||||||
@ -853,10 +924,10 @@ channel_clear(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(rssi >= rssi_threshold) {
|
if(rssi >= rssi_threshold) {
|
||||||
return RF_CCA_BUSY;
|
return RF_CORE_CCA_BUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
return RF_CCA_CLEAR;
|
return RF_CORE_CCA_CLEAR;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static int
|
static int
|
||||||
@ -866,11 +937,23 @@ receiving_packet(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(channel_clear() == RF_CCA_CLEAR) {
|
if(!is_receiving_packet) {
|
||||||
return 0;
|
/* Look for the modem synchronization word detection interrupt flag.
|
||||||
|
* This flag is raised when the synchronization word is received.
|
||||||
|
*/
|
||||||
|
if(HWREG(RFC_DBELL_BASE + RFC_DBELL_O_RFHWIFG) & RFC_DBELL_RFHWIFG_MDMSOFT) {
|
||||||
|
is_receiving_packet = 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/* After the start of the packet: reset the Rx flag once the channel gets clear */
|
||||||
|
is_receiving_packet = (channel_clear() == RF_CORE_CCA_BUSY);
|
||||||
|
if(!is_receiving_packet) {
|
||||||
|
/* Clear the modem sync flag */
|
||||||
|
ti_lib_rfc_hw_int_clear(RFC_DBELL_RFHWIFG_MDMSOFT);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return is_receiving_packet;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static int
|
static int
|
||||||
@ -881,9 +964,12 @@ pending_packet(void)
|
|||||||
|
|
||||||
/* Go through all RX buffers and check their status */
|
/* Go through all RX buffers and check their status */
|
||||||
do {
|
do {
|
||||||
if(entry->status == DATA_ENTRY_STATUS_FINISHED) {
|
if(entry->status == DATA_ENTRY_STATUS_FINISHED
|
||||||
rv += 1;
|
|| entry->status == DATA_ENTRY_STATUS_BUSY) {
|
||||||
process_poll(&rf_core_process);
|
rv = 1;
|
||||||
|
if(!rf_core_poll_mode) {
|
||||||
|
process_poll(&rf_core_process);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
entry = (rfc_dataEntry_t *)entry->pNextEntry;
|
entry = (rfc_dataEntry_t *)entry->pNextEntry;
|
||||||
@ -904,18 +990,18 @@ on(void)
|
|||||||
return RF_CORE_CMD_OK;
|
return RF_CORE_CMD_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Request the HF XOSC as the source for the HF clock. Needed before we can
|
|
||||||
* use the FS. This will only request, it will _not_ perform the switch.
|
|
||||||
*/
|
|
||||||
oscillators_request_hf_xosc();
|
|
||||||
|
|
||||||
if(rf_is_on()) {
|
if(rf_is_on()) {
|
||||||
PRINTF("on: We were on. PD=%u, RX=0x%04x \n", rf_core_is_accessible(),
|
PRINTF("on: We were on. PD=%u, RX=0x%04x \n", rf_core_is_accessible(),
|
||||||
smartrf_settings_cmd_prop_rx_adv.status);
|
smartrf_settings_cmd_prop_rx_adv.status);
|
||||||
return RF_CORE_CMD_OK;
|
return RF_CORE_CMD_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Request the HF XOSC as the source for the HF clock. Needed before we can
|
||||||
|
* use the FS. This will only request, it will _not_ perform the switch.
|
||||||
|
*/
|
||||||
|
oscillators_request_hf_xosc();
|
||||||
|
|
||||||
if(!rf_core_is_accessible()) {
|
if(!rf_core_is_accessible()) {
|
||||||
if(rf_core_power_up() != RF_CORE_CMD_OK) {
|
if(rf_core_power_up() != RF_CORE_CMD_OK) {
|
||||||
PRINTF("on: rf_core_power_up() failed\n");
|
PRINTF("on: rf_core_power_up() failed\n");
|
||||||
@ -958,7 +1044,7 @@ on(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rf_core_setup_interrupts(false);
|
rf_core_setup_interrupts();
|
||||||
|
|
||||||
init_rx_buffers();
|
init_rx_buffers();
|
||||||
|
|
||||||
@ -985,6 +1071,9 @@ on(void)
|
|||||||
static int
|
static int
|
||||||
off(void)
|
off(void)
|
||||||
{
|
{
|
||||||
|
int i;
|
||||||
|
rfc_dataEntry_t *entry;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we are in the middle of a BLE operation, we got called by ContikiMAC
|
* If we are in the middle of a BLE operation, we got called by ContikiMAC
|
||||||
* from within an interrupt context. Abort, but pretend everything is OK.
|
* from within an interrupt context. Abort, but pretend everything is OK.
|
||||||
@ -998,15 +1087,39 @@ off(void)
|
|||||||
|
|
||||||
ENERGEST_OFF(ENERGEST_TYPE_LISTEN);
|
ENERGEST_OFF(ENERGEST_TYPE_LISTEN);
|
||||||
|
|
||||||
|
#if !CC2650_FAST_RADIO_STARTUP
|
||||||
/* Switch HF clock source to the RCOSC to preserve power */
|
/* Switch HF clock source to the RCOSC to preserve power */
|
||||||
oscillators_switch_to_hf_rc();
|
oscillators_switch_to_hf_rc();
|
||||||
|
#endif
|
||||||
|
|
||||||
/* We pulled the plug, so we need to restore the status manually */
|
/* We pulled the plug, so we need to restore the status manually */
|
||||||
smartrf_settings_cmd_prop_rx_adv.status = RF_CORE_RADIO_OP_STATUS_IDLE;
|
smartrf_settings_cmd_prop_rx_adv.status = RF_CORE_RADIO_OP_STATUS_IDLE;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Just in case there was an ongoing RX (which started after we begun the
|
||||||
|
* shutdown sequence), we don't want to leave the buffer in state == ongoing
|
||||||
|
*/
|
||||||
|
for(i = 0; i < PROP_MODE_RX_BUF_CNT; i++) {
|
||||||
|
entry = (rfc_dataEntry_t *)rx_buf[i];
|
||||||
|
if(entry->status == DATA_ENTRY_STATUS_BUSY) {
|
||||||
|
entry->status = DATA_ENTRY_STATUS_PENDING;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return RF_CORE_CMD_OK;
|
return RF_CORE_CMD_OK;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/* Enable or disable CCA before sending */
|
||||||
|
static radio_result_t
|
||||||
|
set_send_on_cca(uint8_t enable)
|
||||||
|
{
|
||||||
|
if(enable) {
|
||||||
|
/* this driver does not have support for CCA on Tx */
|
||||||
|
return RADIO_RESULT_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
static radio_result_t
|
static radio_result_t
|
||||||
get_value(radio_param_t param, radio_value_t *value)
|
get_value(radio_param_t param, radio_value_t *value)
|
||||||
{
|
{
|
||||||
@ -1022,6 +1135,15 @@ get_value(radio_param_t param, radio_value_t *value)
|
|||||||
case RADIO_PARAM_CHANNEL:
|
case RADIO_PARAM_CHANNEL:
|
||||||
*value = (radio_value_t)get_channel();
|
*value = (radio_value_t)get_channel();
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_PARAM_RX_MODE:
|
||||||
|
*value = 0;
|
||||||
|
if(rf_core_poll_mode) {
|
||||||
|
*value |= RADIO_RX_MODE_POLL_MODE;
|
||||||
|
}
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_PARAM_TX_MODE:
|
||||||
|
*value = 0;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
case RADIO_PARAM_TXPOWER:
|
case RADIO_PARAM_TXPOWER:
|
||||||
*value = get_tx_power();
|
*value = get_tx_power();
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
@ -1031,7 +1153,7 @@ get_value(radio_param_t param, radio_value_t *value)
|
|||||||
case RADIO_PARAM_RSSI:
|
case RADIO_PARAM_RSSI:
|
||||||
*value = get_rssi();
|
*value = get_rssi();
|
||||||
|
|
||||||
if(*value == RF_CMD_CCA_REQ_RSSI_UNKNOWN) {
|
if(*value == RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN) {
|
||||||
return RADIO_RESULT_ERROR;
|
return RADIO_RESULT_ERROR;
|
||||||
} else {
|
} else {
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
@ -1048,6 +1170,28 @@ get_value(radio_param_t param, radio_value_t *value)
|
|||||||
case RADIO_CONST_TXPOWER_MAX:
|
case RADIO_CONST_TXPOWER_MAX:
|
||||||
*value = OUTPUT_POWER_MAX;
|
*value = OUTPUT_POWER_MAX;
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_PARAM_LAST_RSSI:
|
||||||
|
*value = rf_core_last_rssi;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_PARAM_LAST_LINK_QUALITY:
|
||||||
|
*value = rf_core_last_corr_lqi;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_PHY_OVERHEAD:
|
||||||
|
/* 2 header bytes, 2 or 4 bytes CRC */
|
||||||
|
*value = (radio_value_t)(DOT_4G_PHR_LEN + CRC_LEN);
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_BYTE_AIR_TIME:
|
||||||
|
*value = (radio_value_t)RADIO_BYTE_AIR_TIME;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_DELAY_BEFORE_TX:
|
||||||
|
*value = (radio_value_t)RADIO_DELAY_BEFORE_TX;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_DELAY_BEFORE_RX:
|
||||||
|
*value = (radio_value_t)RADIO_DELAY_BEFORE_RX;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
case RADIO_CONST_DELAY_BEFORE_DETECT:
|
||||||
|
*value = (radio_value_t)RADIO_DELAY_BEFORE_DETECT;
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
default:
|
default:
|
||||||
return RADIO_RESULT_NOT_SUPPORTED;
|
return RADIO_RESULT_NOT_SUPPORTED;
|
||||||
}
|
}
|
||||||
@ -1056,8 +1200,8 @@ get_value(radio_param_t param, radio_value_t *value)
|
|||||||
static radio_result_t
|
static radio_result_t
|
||||||
set_value(radio_param_t param, radio_value_t value)
|
set_value(radio_param_t param, radio_value_t value)
|
||||||
{
|
{
|
||||||
uint8_t was_off = 0;
|
|
||||||
radio_result_t rv = RADIO_RESULT_OK;
|
radio_result_t rv = RADIO_RESULT_OK;
|
||||||
|
uint8_t old_poll_mode;
|
||||||
|
|
||||||
switch(param) {
|
switch(param) {
|
||||||
case RADIO_PARAM_POWER_MODE:
|
case RADIO_PARAM_POWER_MODE:
|
||||||
@ -1087,6 +1231,25 @@ set_value(radio_param_t param, radio_value_t value)
|
|||||||
|
|
||||||
set_channel((uint8_t)value);
|
set_channel((uint8_t)value);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case RADIO_PARAM_RX_MODE:
|
||||||
|
if(value & ~(RADIO_RX_MODE_POLL_MODE)) {
|
||||||
|
return RADIO_RESULT_INVALID_VALUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
old_poll_mode = rf_core_poll_mode;
|
||||||
|
rf_core_poll_mode = (value & RADIO_RX_MODE_POLL_MODE) != 0;
|
||||||
|
if(rf_core_poll_mode == old_poll_mode) {
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case RADIO_PARAM_TX_MODE:
|
||||||
|
if(value & ~(RADIO_TX_MODE_SEND_ON_CCA)) {
|
||||||
|
return RADIO_RESULT_INVALID_VALUE;
|
||||||
|
}
|
||||||
|
return set_send_on_cca((value & RADIO_TX_MODE_SEND_ON_CCA) != 0);
|
||||||
|
|
||||||
case RADIO_PARAM_TXPOWER:
|
case RADIO_PARAM_TXPOWER:
|
||||||
if(value < TX_POWER_DRIVER[get_tx_power_array_last_element()].dbm ||
|
if(value < TX_POWER_DRIVER[get_tx_power_array_last_element()].dbm ||
|
||||||
value > OUTPUT_POWER_MAX) {
|
value > OUTPUT_POWER_MAX) {
|
||||||
@ -1103,8 +1266,7 @@ set_value(radio_param_t param, radio_value_t value)
|
|||||||
}
|
}
|
||||||
|
|
||||||
return RADIO_RESULT_OK;
|
return RADIO_RESULT_OK;
|
||||||
case RADIO_PARAM_RX_MODE:
|
|
||||||
return RADIO_RESULT_OK;
|
|
||||||
case RADIO_PARAM_CCA_THRESHOLD:
|
case RADIO_PARAM_CCA_THRESHOLD:
|
||||||
rssi_threshold = (int8_t)value;
|
rssi_threshold = (int8_t)value;
|
||||||
break;
|
break;
|
||||||
@ -1112,28 +1274,29 @@ set_value(radio_param_t param, radio_value_t value)
|
|||||||
return RADIO_RESULT_NOT_SUPPORTED;
|
return RADIO_RESULT_NOT_SUPPORTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If we reach here we had no errors. Apply new settings */
|
/* If off, the new configuration will be applied the next time radio is started */
|
||||||
if(!rf_is_on()) {
|
if(!rf_is_on()) {
|
||||||
was_off = 1;
|
return RADIO_RESULT_OK;
|
||||||
if(on() != RF_CORE_CMD_OK) {
|
|
||||||
PRINTF("set_value: on() failed (2)\n");
|
|
||||||
return RADIO_RESULT_ERROR;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* If we reach here we had no errors. Apply new settings */
|
||||||
if(rx_off_prop() != RF_CORE_CMD_OK) {
|
if(rx_off_prop() != RF_CORE_CMD_OK) {
|
||||||
PRINTF("set_value: rx_off_prop() failed\n");
|
PRINTF("set_value: rx_off_prop() failed\n");
|
||||||
rv = RADIO_RESULT_ERROR;
|
rv = RADIO_RESULT_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(soft_on_prop() != RF_CORE_CMD_OK) {
|
/* Restart the radio timer (RAT).
|
||||||
PRINTF("set_value: rx_on_prop() failed\n");
|
This causes resynchronization between RAT and RTC: useful for TSCH. */
|
||||||
rv = RADIO_RESULT_ERROR;
|
if(rf_core_restart_rat() != RF_CORE_CMD_OK) {
|
||||||
|
PRINTF("set_value: rf_core_restart_rat() failed\n");
|
||||||
|
/* do not set the error */
|
||||||
|
} else {
|
||||||
|
rf_core_check_rat_overflow();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If we were off, turn back off */
|
if(soft_on_prop() != RF_CORE_CMD_OK) {
|
||||||
if(was_off) {
|
PRINTF("set_value: soft_on_prop() failed\n");
|
||||||
off();
|
rv = RADIO_RESULT_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
return rv;
|
return rv;
|
||||||
@ -1142,6 +1305,15 @@ set_value(radio_param_t param, radio_value_t value)
|
|||||||
static radio_result_t
|
static radio_result_t
|
||||||
get_object(radio_param_t param, void *dest, size_t size)
|
get_object(radio_param_t param, void *dest, size_t size)
|
||||||
{
|
{
|
||||||
|
if(param == RADIO_PARAM_LAST_PACKET_TIMESTAMP) {
|
||||||
|
if(size != sizeof(rtimer_clock_t) || !dest) {
|
||||||
|
return RADIO_RESULT_INVALID_VALUE;
|
||||||
|
}
|
||||||
|
*(rtimer_clock_t *)dest = rf_core_last_packet_timestamp;
|
||||||
|
|
||||||
|
return RADIO_RESULT_OK;
|
||||||
|
}
|
||||||
|
|
||||||
return RADIO_RESULT_NOT_SUPPORTED;
|
return RADIO_RESULT_NOT_SUPPORTED;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
@ -99,12 +99,37 @@ static rfc_radioOp_t *last_radio_op = NULL;
|
|||||||
/* A struct holding pointers to the primary mode's abort() and restore() */
|
/* A struct holding pointers to the primary mode's abort() and restore() */
|
||||||
static const rf_core_primary_mode_t *primary_mode = NULL;
|
static const rf_core_primary_mode_t *primary_mode = NULL;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/* RAT has 32-bit register, overflows once 18 minutes */
|
||||||
|
#define RAT_RANGE 4294967296ull
|
||||||
|
/* approximate value */
|
||||||
|
#define RAT_OVERFLOW_PERIOD_SECONDS (60 * 18)
|
||||||
|
|
||||||
|
/* how often to check for the overflow, as a minimum */
|
||||||
|
#define RAT_OVERFLOW_TIMER_INTERVAL (CLOCK_SECOND * RAT_OVERFLOW_PERIOD_SECONDS / 3)
|
||||||
|
|
||||||
/* Radio timer (RAT) offset as compared to the rtimer counter (RTC) */
|
/* Radio timer (RAT) offset as compared to the rtimer counter (RTC) */
|
||||||
int32_t rat_offset = 0;
|
static int32_t rat_offset;
|
||||||
static bool rat_offset_known = false;
|
static bool rat_offset_known;
|
||||||
|
|
||||||
|
/* Value during the last read of the RAT register */
|
||||||
|
static uint32_t rat_last_value;
|
||||||
|
|
||||||
|
/* For RAT overflow handling */
|
||||||
|
static struct ctimer rat_overflow_timer;
|
||||||
|
static volatile uint32_t rat_overflow_counter;
|
||||||
|
static rtimer_clock_t rat_last_overflow;
|
||||||
|
|
||||||
|
static void rat_overflow_check_timer_cb(void *);
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
volatile int8_t rf_core_last_rssi = RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN;
|
||||||
|
volatile uint8_t rf_core_last_corr_lqi = 0;
|
||||||
|
volatile uint32_t rf_core_last_packet_timestamp = 0;
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/* Are we currently in poll mode? */
|
||||||
|
uint8_t rf_core_poll_mode = 0;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* Buffer full flag */
|
/* Buffer full flag */
|
||||||
volatile bool rx_is_full = false;
|
volatile bool rf_core_rx_is_full = false;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
PROCESS(rf_core_process, "CC13xx / CC26xx RF driver");
|
PROCESS(rf_core_process, "CC13xx / CC26xx RF driver");
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
@ -451,10 +476,10 @@ rf_core_restart_rat(void)
|
|||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
rf_core_setup_interrupts(bool poll_mode)
|
rf_core_setup_interrupts(void)
|
||||||
{
|
{
|
||||||
bool interrupts_disabled;
|
bool interrupts_disabled;
|
||||||
const uint32_t enabled_irqs = poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
const uint32_t enabled_irqs = rf_core_poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
||||||
|
|
||||||
/* We are already turned on by the caller, so this should not happen */
|
/* We are already turned on by the caller, so this should not happen */
|
||||||
if(!rf_core_is_accessible()) {
|
if(!rf_core_is_accessible()) {
|
||||||
@ -485,19 +510,23 @@ rf_core_setup_interrupts(bool poll_mode)
|
|||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
rf_core_cmd_done_en(bool fg, bool poll_mode)
|
rf_core_cmd_done_en(bool fg)
|
||||||
{
|
{
|
||||||
uint32_t irq = fg ? IRQ_LAST_FG_COMMAND_DONE : IRQ_LAST_COMMAND_DONE;
|
uint32_t irq = 0;
|
||||||
const uint32_t enabled_irqs = poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
const uint32_t enabled_irqs = rf_core_poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
||||||
|
|
||||||
|
if(!rf_core_poll_mode) {
|
||||||
|
irq = fg ? IRQ_LAST_FG_COMMAND_DONE : IRQ_LAST_COMMAND_DONE;
|
||||||
|
}
|
||||||
|
|
||||||
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = enabled_irqs;
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = enabled_irqs;
|
||||||
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = enabled_irqs | irq;
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = enabled_irqs | irq;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
rf_core_cmd_done_dis(bool poll_mode)
|
rf_core_cmd_done_dis(void)
|
||||||
{
|
{
|
||||||
const uint32_t enabled_irqs = poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
const uint32_t enabled_irqs = rf_core_poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
||||||
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = enabled_irqs;
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = enabled_irqs;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
@ -544,6 +573,123 @@ rf_core_primary_mode_restore()
|
|||||||
return RF_CORE_CMD_ERROR;
|
return RF_CORE_CMD_ERROR;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
uint8_t
|
||||||
|
rf_core_rat_init(void)
|
||||||
|
{
|
||||||
|
rat_last_value = HWREG(RFC_RAT_BASE + RATCNT);
|
||||||
|
|
||||||
|
ctimer_set(&rat_overflow_timer, RAT_OVERFLOW_TIMER_INTERVAL,
|
||||||
|
rat_overflow_check_timer_cb, NULL);
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
uint8_t
|
||||||
|
rf_core_check_rat_overflow(void)
|
||||||
|
{
|
||||||
|
uint32_t rat_current_value;
|
||||||
|
uint8_t interrupts_disabled;
|
||||||
|
|
||||||
|
/* Bail out if the RF is not on */
|
||||||
|
if(primary_mode == NULL || !primary_mode->is_on()) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
interrupts_disabled = ti_lib_int_master_disable();
|
||||||
|
|
||||||
|
rat_current_value = HWREG(RFC_RAT_BASE + RATCNT);
|
||||||
|
if(rat_current_value + RAT_RANGE / 4 < rat_last_value) {
|
||||||
|
/* Overflow detected */
|
||||||
|
rat_last_overflow = RTIMER_NOW();
|
||||||
|
rat_overflow_counter++;
|
||||||
|
}
|
||||||
|
rat_last_value = rat_current_value;
|
||||||
|
|
||||||
|
if(!interrupts_disabled) {
|
||||||
|
ti_lib_int_master_enable();
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
static void
|
||||||
|
rat_overflow_check_timer_cb(void *unused)
|
||||||
|
{
|
||||||
|
uint8_t success = 0;
|
||||||
|
uint8_t was_off = 0;
|
||||||
|
|
||||||
|
if(primary_mode != NULL) {
|
||||||
|
|
||||||
|
if(!primary_mode->is_on()) {
|
||||||
|
was_off = 1;
|
||||||
|
if(NETSTACK_RADIO.on() != RF_CORE_CMD_OK) {
|
||||||
|
PRINTF("overflow: on() failed\n");
|
||||||
|
ctimer_set(&rat_overflow_timer, CLOCK_SECOND,
|
||||||
|
rat_overflow_check_timer_cb, NULL);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
success = rf_core_check_rat_overflow();
|
||||||
|
|
||||||
|
if(was_off) {
|
||||||
|
NETSTACK_RADIO.off();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(success) {
|
||||||
|
/* Retry after half of the interval */
|
||||||
|
ctimer_set(&rat_overflow_timer, RAT_OVERFLOW_TIMER_INTERVAL,
|
||||||
|
rat_overflow_check_timer_cb, NULL);
|
||||||
|
} else {
|
||||||
|
/* Retry sooner */
|
||||||
|
ctimer_set(&rat_overflow_timer, CLOCK_SECOND,
|
||||||
|
rat_overflow_check_timer_cb, NULL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
uint32_t
|
||||||
|
rf_core_convert_rat_to_rtimer(uint32_t rat_timestamp)
|
||||||
|
{
|
||||||
|
uint64_t rat_timestamp64;
|
||||||
|
uint32_t adjusted_overflow_counter;
|
||||||
|
uint8_t was_off = 0;
|
||||||
|
|
||||||
|
if(primary_mode == NULL) {
|
||||||
|
PRINTF("rf_core_convert_rat_to_rtimer: not initialized\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!primary_mode->is_on()) {
|
||||||
|
was_off = 1;
|
||||||
|
NETSTACK_RADIO.on();
|
||||||
|
}
|
||||||
|
|
||||||
|
rf_core_check_rat_overflow();
|
||||||
|
|
||||||
|
if(was_off) {
|
||||||
|
NETSTACK_RADIO.off();
|
||||||
|
}
|
||||||
|
|
||||||
|
adjusted_overflow_counter = rat_overflow_counter;
|
||||||
|
|
||||||
|
/* if the timestamp is large and the last oveflow was recently,
|
||||||
|
assume that the timestamp refers to the time before the overflow */
|
||||||
|
if(rat_timestamp > (uint32_t)(RAT_RANGE * 3 / 4)) {
|
||||||
|
if(RTIMER_CLOCK_LT(RTIMER_NOW(),
|
||||||
|
rat_last_overflow + RAT_OVERFLOW_PERIOD_SECONDS * RTIMER_SECOND / 4)) {
|
||||||
|
adjusted_overflow_counter--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* add the overflowed time to the timestamp */
|
||||||
|
rat_timestamp64 = rat_timestamp + RAT_RANGE * adjusted_overflow_counter;
|
||||||
|
/* correct timestamp so that it refers to the end of the SFD */
|
||||||
|
rat_timestamp64 += primary_mode->sfd_timestamp_offset;
|
||||||
|
|
||||||
|
return RADIO_TO_RTIMER(rat_timestamp64 - rat_offset);
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
PROCESS_THREAD(rf_core_process, ev, data)
|
PROCESS_THREAD(rf_core_process, ev, data)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
@ -582,11 +728,11 @@ cc26xx_rf_cpe1_isr(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) & IRQ_RX_BUF_FULL) {
|
if(HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) & IRQ_RX_BUF_FULL) {
|
||||||
PRINTF("\nRF: BUF_FULL\n\n");
|
PRINTF("\nRF: BUF_FULL\n\n");
|
||||||
/* set a flag that the buffer is full*/
|
/* set a flag that the buffer is full*/
|
||||||
rx_is_full = true;
|
rf_core_rx_is_full = true;
|
||||||
/* make sure read_frame() will be called to make space in RX buffer */
|
/* make sure read_frame() will be called to make space in RX buffer */
|
||||||
process_poll(&rf_core_process);
|
process_poll(&rf_core_process);
|
||||||
/* Clear the IRQ_RX_BUF_FULL interrupt flag by writing zero to bit */
|
/* Clear the IRQ_RX_BUF_FULL interrupt flag by writing zero to bit */
|
||||||
|
@ -133,6 +133,17 @@ typedef struct rf_core_primary_mode_s {
|
|||||||
* \return RF_CORE_CMD_OK or RF_CORE_CMD_ERROR
|
* \return RF_CORE_CMD_OK or RF_CORE_CMD_ERROR
|
||||||
*/
|
*/
|
||||||
uint8_t (*restore)(void);
|
uint8_t (*restore)(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief A pointer to a function that checks if the radio is on
|
||||||
|
* \return 1 or 0
|
||||||
|
*/
|
||||||
|
uint8_t (*is_on)(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Offset of the end of SFD when compared to the radio HW-generated timestamp
|
||||||
|
*/
|
||||||
|
int16_t sfd_timestamp_offset;
|
||||||
} rf_core_primary_mode_t;
|
} rf_core_primary_mode_t;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* RF Command status constants - Correspond to values in the CMDSTA register */
|
/* RF Command status constants - Correspond to values in the CMDSTA register */
|
||||||
@ -263,12 +274,65 @@ typedef struct rf_core_primary_mode_s {
|
|||||||
/* Radio timer register */
|
/* Radio timer register */
|
||||||
#define RATCNT 0x00000004
|
#define RATCNT 0x00000004
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* Buffer full flag */
|
/* Special value returned by CMD_IEEE_CCA_REQ when an RSSI is not available */
|
||||||
extern volatile bool rx_is_full;
|
#define RF_CORE_CMD_CCA_REQ_RSSI_UNKNOWN -128
|
||||||
|
|
||||||
|
/* Used for the return value of channel_clear */
|
||||||
|
#define RF_CORE_CCA_CLEAR 1
|
||||||
|
#define RF_CORE_CCA_BUSY 0
|
||||||
|
|
||||||
|
/* Used as an error return value for get_cca_info */
|
||||||
|
#define RF_CORE_GET_CCA_INFO_ERROR 0xFF
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Values of the individual bits of the ccaInfo field in CMD_IEEE_CCA_REQ's
|
||||||
|
* status struct
|
||||||
|
*/
|
||||||
|
#define RF_CORE_CMD_CCA_REQ_CCA_STATE_IDLE 0 /* 00 */
|
||||||
|
#define RF_CORE_CMD_CCA_REQ_CCA_STATE_BUSY 1 /* 01 */
|
||||||
|
#define RF_CORE_CMD_CCA_REQ_CCA_STATE_INVALID 2 /* 10 */
|
||||||
|
|
||||||
|
#define RF_CORE_CMD_CCA_REQ_CCA_CORR_IDLE (0 << 4)
|
||||||
|
#define RF_CORE_CMD_CCA_REQ_CCA_CORR_BUSY (1 << 4)
|
||||||
|
#define RF_CORE_CMD_CCA_REQ_CCA_CORR_INVALID (3 << 4)
|
||||||
|
#define RF_CORE_CMD_CCA_REQ_CCA_CORR_MASK (3 << 4)
|
||||||
|
|
||||||
|
#define RF_CORE_CMD_CCA_REQ_CCA_SYNC_BUSY (1 << 6)
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
#define RF_CORE_RX_BUF_INCLUDE_CRC 0
|
||||||
|
#define RF_CORE_RX_BUF_INCLUDE_RSSI 1
|
||||||
|
#define RF_CORE_RX_BUF_INCLUDE_CORR 1
|
||||||
|
#define RF_CORE_RX_BUF_INCLUDE_TIMESTAMP 1
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/* How long to wait for an ongoing ACK TX to finish before starting frame TX */
|
||||||
|
#define RF_CORE_TX_TIMEOUT (RTIMER_SECOND >> 11)
|
||||||
|
|
||||||
|
/* How long to wait for the RF to enter RX in rf_cmd_ieee_rx */
|
||||||
|
#define RF_CORE_ENTER_RX_TIMEOUT (RTIMER_SECOND >> 10)
|
||||||
|
|
||||||
|
/* How long to wait for the RF to react on CMD_ABORT: around 1 msec */
|
||||||
|
#define RF_CORE_TURN_OFF_TIMEOUT (RTIMER_SECOND >> 10)
|
||||||
|
|
||||||
|
/* How long to wait for the RF to finish TX of a packet or an ACK */
|
||||||
|
#define RF_CORE_TX_FINISH_TIMEOUT (RTIMER_SECOND >> 7)
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* Make the main driver process visible to mode drivers */
|
/* Make the main driver process visible to mode drivers */
|
||||||
PROCESS_NAME(rf_core_process);
|
PROCESS_NAME(rf_core_process);
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/* Buffer full flag */
|
||||||
|
extern volatile bool rf_core_rx_is_full;
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/* RSSI of the last read frame */
|
||||||
|
extern volatile int8_t rf_core_last_rssi;
|
||||||
|
/* Correlation/LQI of the last read frame */
|
||||||
|
extern volatile uint8_t rf_core_last_corr_lqi;
|
||||||
|
/* SFD timestamp of the last read frame, in rtimer ticks */
|
||||||
|
extern volatile uint32_t rf_core_last_packet_timestamp;
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
/* Are we currently in poll mode? */
|
||||||
|
extern uint8_t rf_core_poll_mode;
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
/**
|
/**
|
||||||
* \brief Check whether the RF core is accessible
|
* \brief Check whether the RF core is accessible
|
||||||
* \retval RF_CORE_ACCESSIBLE The core is powered and ready for access
|
* \retval RF_CORE_ACCESSIBLE The core is powered and ready for access
|
||||||
@ -383,20 +447,19 @@ uint8_t rf_core_boot(void);
|
|||||||
/**
|
/**
|
||||||
* \brief Setup RF core interrupts
|
* \brief Setup RF core interrupts
|
||||||
*/
|
*/
|
||||||
void rf_core_setup_interrupts(bool poll_mode);
|
void rf_core_setup_interrupts(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Enable interrupt on command done.
|
* \brief Enable interrupt on command done.
|
||||||
* \param fg set true to enable irq on foreground command done and false for
|
* \param fg set true to enable irq on foreground command done and false for
|
||||||
* background commands or if not in ieee mode.
|
* background commands or if not in ieee mode.
|
||||||
* \param poll_mode true if the driver is in poll mode
|
|
||||||
*
|
*
|
||||||
* This is used within TX routines in order to be able to sleep the CM3 and
|
* This is used within TX routines in order to be able to sleep the CM3 and
|
||||||
* wake up after TX has finished
|
* wake up after TX has finished
|
||||||
*
|
*
|
||||||
* \sa rf_core_cmd_done_dis()
|
* \sa rf_core_cmd_done_dis()
|
||||||
*/
|
*/
|
||||||
void rf_core_cmd_done_en(bool fg, bool poll_mode);
|
void rf_core_cmd_done_en(bool fg);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Disable the LAST_CMD_DONE and LAST_FG_CMD_DONE interrupts.
|
* \brief Disable the LAST_CMD_DONE and LAST_FG_CMD_DONE interrupts.
|
||||||
@ -405,7 +468,7 @@ void rf_core_cmd_done_en(bool fg, bool poll_mode);
|
|||||||
*
|
*
|
||||||
* \sa rf_core_cmd_done_en()
|
* \sa rf_core_cmd_done_en()
|
||||||
*/
|
*/
|
||||||
void rf_core_cmd_done_dis(bool poll_mode);
|
void rf_core_cmd_done_dis(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Returns a pointer to the most recent proto-dependent Radio Op
|
* \brief Returns a pointer to the most recent proto-dependent Radio Op
|
||||||
@ -467,6 +530,22 @@ void rf_core_primary_mode_abort(void);
|
|||||||
* \brief Abort the currently running primary radio op
|
* \brief Abort the currently running primary radio op
|
||||||
*/
|
*/
|
||||||
uint8_t rf_core_primary_mode_restore(void);
|
uint8_t rf_core_primary_mode_restore(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Initialize the RAT to RTC conversion machinery
|
||||||
|
*/
|
||||||
|
uint8_t rf_core_rat_init(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Check if RAT overflow has occured and increment the overflow counter if so
|
||||||
|
*/
|
||||||
|
uint8_t rf_core_check_rat_overflow(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Convert from RAT timestamp to rtimer ticks
|
||||||
|
*/
|
||||||
|
uint32_t rf_core_convert_rat_to_rtimer(uint32_t rat_timestamp);
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
#endif /* RF_CORE_H_ */
|
#endif /* RF_CORE_H_ */
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
@ -399,6 +399,9 @@
|
|||||||
|
|
||||||
#define ti_lib_rfc_rtrim(...) RFCRTrim(__VA_ARGS__)
|
#define ti_lib_rfc_rtrim(...) RFCRTrim(__VA_ARGS__)
|
||||||
#define ti_lib_rfc_adi3vco_ldo_voltage_mode(...) RFCAdi3VcoLdoVoltageMode(__VA_ARGS__)
|
#define ti_lib_rfc_adi3vco_ldo_voltage_mode(...) RFCAdi3VcoLdoVoltageMode(__VA_ARGS__)
|
||||||
|
#define ti_lib_rfc_hw_int_enable(...) RFCHwIntEnable(__VA_ARGS__)
|
||||||
|
#define ti_lib_rfc_hw_int_disable(...) RFCHwIntDisable(__VA_ARGS__)
|
||||||
|
#define ti_lib_rfc_hw_int_clear(...) RFCHwIntClear(__VA_ARGS__)
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* sys_ctrl.h */
|
/* sys_ctrl.h */
|
||||||
#include "driverlib/sys_ctrl.h"
|
#include "driverlib/sys_ctrl.h"
|
||||||
|
@ -46,23 +46,8 @@ MODULES += arch/dev/cc1200 arch/dev/rgb-led os/storage/cfs
|
|||||||
|
|
||||||
BSL = $(CONTIKI)/tools/cc2538-bsl/cc2538-bsl.py
|
BSL = $(CONTIKI)/tools/cc2538-bsl/cc2538-bsl.py
|
||||||
|
|
||||||
### Use the specific Zoul subplatform to query for connected devices
|
MOTES := $(shell python $(TOOLS_DIR)/motelist/motelist.py --omit-header \
|
||||||
ifdef MOTELIST_ZOLERTIA
|
| grep $(MOTELIST_ZOLERTIA) | cut -f1 -d " ")
|
||||||
MOTELIST_FLAGS += -b $(MOTELIST_ZOLERTIA)
|
|
||||||
endif
|
|
||||||
|
|
||||||
### Detect if a mote is connected over serial port
|
|
||||||
ifeq ($(HOST_OS),Darwin)
|
|
||||||
USBDEVPREFIX=
|
|
||||||
MOTELIST := $(CONTIKI)/tools/zolertia/motelist-zolertia-macos
|
|
||||||
MOTES := $(shell $(MOTELIST) -c 2>&- | cut -f 2 -d ,)
|
|
||||||
else
|
|
||||||
### If we are not running under Mac, we assume Linux
|
|
||||||
USBDEVPREFIX=
|
|
||||||
MOTELIST := $(CONTIKI)/tools/zolertia/motelist-zolertia
|
|
||||||
MOTES := $(shell $(MOTELIST) -b $(MOTELIST_ZOLERTIA) -c 2>&- | cut -f 2 -d , | \
|
|
||||||
perl -ne 'print $$1 . " " if(m-(/dev/\w+)-);')
|
|
||||||
endif
|
|
||||||
|
|
||||||
### If PORT is defined, override to keep backward compatibility
|
### If PORT is defined, override to keep backward compatibility
|
||||||
ifdef PORT
|
ifdef PORT
|
||||||
@ -81,7 +66,8 @@ endif
|
|||||||
|
|
||||||
### Variable that expands into a pattern rule to upload to a given MOTE.
|
### Variable that expands into a pattern rule to upload to a given MOTE.
|
||||||
### Requires $(MOTE) to be defined
|
### Requires $(MOTE) to be defined
|
||||||
### $$$$ Double escapes $s that need to be passed to the shell - once for when make parses UPLOAD_RULE, and once for when the expanded rule is parsed by make.
|
### $$$$ Double escapes $s that need to be passed to the shell - once for when
|
||||||
|
### make parses UPLOAD_RULE, and once for when the expanded rule is parsed by make.
|
||||||
define UPLOAD_RULE
|
define UPLOAD_RULE
|
||||||
%.$(MOTE): %.bin %.elf
|
%.$(MOTE): %.bin %.elf
|
||||||
@echo "Flashing $(MOTE)"
|
@echo "Flashing $(MOTE)"
|
||||||
@ -94,10 +80,8 @@ endef
|
|||||||
### Create an upload rule for every MOTE connected
|
### Create an upload rule for every MOTE connected
|
||||||
$(foreach MOTE,$(MOTES),$(eval $(UPLOAD_RULE)))
|
$(foreach MOTE,$(MOTES),$(eval $(UPLOAD_RULE)))
|
||||||
|
|
||||||
motelist:
|
.PHONY: zoul-motes
|
||||||
$(MOTELIST)
|
|
||||||
zoul-motelist:
|
|
||||||
$(MOTELIST) $(MOTELIST_FLAGS)
|
|
||||||
zoul-motes:
|
zoul-motes:
|
||||||
@echo $(MOTES)
|
@echo $(MOTES)
|
||||||
|
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
MOTELIST_ZOLERTIA = firefly
|
MOTELIST_ZOLERTIA := Firefly
|
||||||
BOARD_SOURCEFILES += board.c
|
BOARD_SOURCEFILES += board.c
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
MOTELIST_ZOLERTIA = firefly
|
MOTELIST_ZOLERTIA := Firefly
|
||||||
BOARD_SOURCEFILES += board.c
|
BOARD_SOURCEFILES += board.c
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MOTELIST_ZOLERTIA = orion
|
MOTELIST_ZOLERTIA := Orion
|
||||||
MODULES += arch/dev/enc28j60
|
MODULES += arch/dev/enc28j60
|
||||||
CC2538_ENC28J60_ARCH ?= gpio
|
CC2538_ENC28J60_ARCH ?= gpio
|
||||||
ifeq ($(WITH_IP64),1)
|
ifeq ($(WITH_IP64),1)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MOTELIST_ZOLERTIA = remote
|
MOTELIST_ZOLERTIA := RE-Mote
|
||||||
BOARD_SOURCEFILES += board.c antenna-sw.c mmc-arch.c rtcc.c power-mgmt.c
|
BOARD_SOURCEFILES += board.c antenna-sw.c mmc-arch.c rtcc.c power-mgmt.c
|
||||||
|
|
||||||
MODULES += os/lib/fs/fat os/lib/fs/fat/option arch/platform/zoul/fs/fat arch/dev/disk/mmc
|
MODULES += os/lib/fs/fat os/lib/fs/fat/option arch/platform/zoul/fs/fat arch/dev/disk/mmc
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MOTELIST_ZOLERTIA = remote
|
MOTELIST_ZOLERTIA := RE-Mote
|
||||||
BOARD_SOURCEFILES += board.c antenna-sw.c mmc-arch.c rtcc.c power-mgmt.c
|
BOARD_SOURCEFILES += board.c antenna-sw.c mmc-arch.c rtcc.c power-mgmt.c
|
||||||
|
|
||||||
MODULES += os/lib/fs/fat os/lib/fs/fat/option arch/platform/zoul/fs/fat arch/dev/disk/mmc
|
MODULES += os/lib/fs/fat os/lib/fs/fat/option arch/platform/zoul/fs/fat arch/dev/disk/mmc
|
||||||
|
@ -2,7 +2,6 @@ CONTIKI_PROJECT = sixp-node
|
|||||||
PROJECT_SOURCEFILES += test-sf.c
|
PROJECT_SOURCEFILES += test-sf.c
|
||||||
|
|
||||||
PLATFORMS_EXCLUDE = sky nrf52dk native simplelink
|
PLATFORMS_EXCLUDE = sky nrf52dk native simplelink
|
||||||
BOARDS_EXCLUDE = srf06/cc13xx launchpad/cc1310 launchpad/cc1350 sensortag/cc2650 sensortag/cc1350
|
|
||||||
|
|
||||||
CONTIKI = ../../../
|
CONTIKI = ../../../
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ CONTIKI_PROJECT = node
|
|||||||
all: $(CONTIKI_PROJECT)
|
all: $(CONTIKI_PROJECT)
|
||||||
|
|
||||||
PLATFORMS_EXCLUDE = sky nrf52dk native simplelink
|
PLATFORMS_EXCLUDE = sky nrf52dk native simplelink
|
||||||
BOARDS_EXCLUDE = srf06/cc13xx launchpad/cc1310 launchpad/cc1350 sensortag/cc2650 sensortag/cc1350
|
BOARDS_EXCLUDE = sensortag/cc2650 sensortag/cc1350
|
||||||
|
|
||||||
MAKE_WITH_SECURITY ?= 0 # force Security from command line
|
MAKE_WITH_SECURITY ?= 0 # force Security from command line
|
||||||
ifeq ($(MAKE_WITH_SECURITY),1)
|
ifeq ($(MAKE_WITH_SECURITY),1)
|
||||||
|
@ -2,7 +2,6 @@ CONTIKI_PROJECT = node
|
|||||||
all: $(CONTIKI_PROJECT)
|
all: $(CONTIKI_PROJECT)
|
||||||
|
|
||||||
PLATFORMS_EXCLUDE = sky nrf52dk native simplelink
|
PLATFORMS_EXCLUDE = sky nrf52dk native simplelink
|
||||||
BOARDS_EXCLUDE = srf06/cc13xx launchpad/cc1310 launchpad/cc1350 sensortag/cc2650 sensortag/cc1350
|
|
||||||
|
|
||||||
CONTIKI=../../..
|
CONTIKI=../../..
|
||||||
|
|
||||||
|
@ -2,7 +2,6 @@ CONTIKI_PROJECT = node-sixtop
|
|||||||
all: $(CONTIKI_PROJECT)
|
all: $(CONTIKI_PROJECT)
|
||||||
|
|
||||||
PLATFORMS_EXCLUDE = sky nrf52dk native simplelink
|
PLATFORMS_EXCLUDE = sky nrf52dk native simplelink
|
||||||
BOARDS_EXCLUDE = srf06/cc13xx launchpad/cc1310 launchpad/cc1350 sensortag/cc2650 sensortag/cc1350
|
|
||||||
|
|
||||||
PROJECT_SOURCEFILES += sf-simple.c
|
PROJECT_SOURCEFILES += sf-simple.c
|
||||||
CONTIKI=../../..
|
CONTIKI=../../..
|
||||||
|
@ -46,9 +46,9 @@ static uint8_t counter;
|
|||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/* Print gpio_hal_pin_mask_t using the correct format */
|
/* Print gpio_hal_pin_mask_t using the correct format */
|
||||||
#if GPIO_HAL_PIN_COUNT > 32
|
#if GPIO_HAL_PIN_COUNT > 32
|
||||||
#define PIN_MASK_FMT PRIx64
|
#define PIN_MASK_FMT "0x%016" PRIx64
|
||||||
#else
|
#else
|
||||||
#define PIN_MASK_FMT PRIx32
|
#define PIN_MASK_FMT "0x%08" PRIx32
|
||||||
#endif
|
#endif
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
PROCESS(gpio_hal_example, "GPIO HAL Example");
|
PROCESS(gpio_hal_example, "GPIO HAL Example");
|
||||||
@ -127,7 +127,7 @@ PROCESS_THREAD(gpio_hal_example, ev, data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Test read */
|
/* Test read */
|
||||||
printf("%u: Pins are 1-%u, 2=%u, 3=%u, mask=0x%08" PIN_MASK_FMT "\n",
|
printf("%u: Pins are 1-%u, 2=%u, 3=%u, mask=" PIN_MASK_FMT "\n",
|
||||||
counter & 7,
|
counter & 7,
|
||||||
gpio_hal_arch_read_pin(out_pin1),
|
gpio_hal_arch_read_pin(out_pin1),
|
||||||
gpio_hal_arch_read_pin(out_pin2),
|
gpio_hal_arch_read_pin(out_pin2),
|
||||||
|
@ -79,7 +79,7 @@ PROCESS_THREAD(timer_process, ev, data)
|
|||||||
PROCESS_BEGIN();
|
PROCESS_BEGIN();
|
||||||
|
|
||||||
ctimer_set(&timer_ctimer, CLOCK_SECOND, ctimer_callback, NULL);
|
ctimer_set(&timer_ctimer, CLOCK_SECOND, ctimer_callback, NULL);
|
||||||
rtimer_set(&timer_rtimer, RTIMER_NOW() + CLOCK_SECOND / 2, 0,
|
rtimer_set(&timer_rtimer, RTIMER_NOW() + RTIMER_SECOND / 2, 0,
|
||||||
rtimer_callback, NULL);
|
rtimer_callback, NULL);
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
|
@ -189,7 +189,7 @@ void gpio_hal_event_handler(gpio_hal_pin_mask_t pins);
|
|||||||
* \param pin The pin
|
* \param pin The pin
|
||||||
* \return The corresponding mask
|
* \return The corresponding mask
|
||||||
*/
|
*/
|
||||||
#define gpio_hal_pin_to_mask(pin) (1 << (pin))
|
#define gpio_hal_pin_to_mask(pin) ((gpio_hal_pin_mask_t)1 << (pin))
|
||||||
/** @} */
|
/** @} */
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/**
|
/**
|
||||||
|
@ -99,7 +99,9 @@
|
|||||||
#endif /* COAP_MAX_OBSERVERS */
|
#endif /* COAP_MAX_OBSERVERS */
|
||||||
|
|
||||||
/* Interval in notifies in which NON notifies are changed to CON notifies to check client. */
|
/* Interval in notifies in which NON notifies are changed to CON notifies to check client. */
|
||||||
#ifndef COAP_OBSERVE_REFRESH_INTERVAL
|
#ifdef COAP_CONF_OBSERVE_REFRESH_INTERVAL
|
||||||
|
#define COAP_OBSERVE_REFRESH_INTERVAL COAP_CONF_OBSERVE_REFRESH_INTERVAL
|
||||||
|
#else
|
||||||
#define COAP_OBSERVE_REFRESH_INTERVAL 20
|
#define COAP_OBSERVE_REFRESH_INTERVAL 20
|
||||||
#endif /* COAP_OBSERVE_REFRESH_INTERVAL */
|
#endif /* COAP_OBSERVE_REFRESH_INTERVAL */
|
||||||
|
|
||||||
|
@ -244,7 +244,9 @@ coap_notify_observers_sub(coap_resource_t *resource, const char *subpath)
|
|||||||
/*TODO implement special transaction for CON, sharing the same buffer to allow for more observers */
|
/*TODO implement special transaction for CON, sharing the same buffer to allow for more observers */
|
||||||
|
|
||||||
if((transaction = coap_new_transaction(coap_get_mid(), &obs->endpoint))) {
|
if((transaction = coap_new_transaction(coap_get_mid(), &obs->endpoint))) {
|
||||||
if(obs->obs_counter % COAP_OBSERVE_REFRESH_INTERVAL == 0) {
|
/* if COAP_OBSERVE_REFRESH_INTERVAL is zero, never send observations as confirmable messages */
|
||||||
|
if(COAP_OBSERVE_REFRESH_INTERVAL != 0
|
||||||
|
&& (obs->obs_counter % COAP_OBSERVE_REFRESH_INTERVAL == 0)) {
|
||||||
LOG_DBG(" Force Confirmable for\n");
|
LOG_DBG(" Force Confirmable for\n");
|
||||||
notification->type = COAP_TYPE_CON;
|
notification->type = COAP_TYPE_CON;
|
||||||
}
|
}
|
||||||
|
@ -77,9 +77,7 @@
|
|||||||
/* The approximate number of slots per second */
|
/* The approximate number of slots per second */
|
||||||
#define TSCH_SLOTS_PER_SECOND (1000000 / tsch_timing_us[tsch_ts_timeslot_length])
|
#define TSCH_SLOTS_PER_SECOND (1000000 / tsch_timing_us[tsch_ts_timeslot_length])
|
||||||
|
|
||||||
/* Calculate packet tx/rx duration in rtimer ticks based on sent
|
/* Calculate packet tx/rx duration in rtimer ticks based on packet length in bytes. */
|
||||||
* packet len in bytes with 802.15.4 250kbps data rate.
|
|
||||||
* One byte = 32us. Add two bytes for CRC and one for len field */
|
|
||||||
#define TSCH_PACKET_DURATION(len) US_TO_RTIMERTICKS(RADIO_BYTE_AIR_TIME * ((len) + RADIO_PHY_OVERHEAD))
|
#define TSCH_PACKET_DURATION(len) US_TO_RTIMERTICKS(RADIO_BYTE_AIR_TIME * ((len) + RADIO_PHY_OVERHEAD))
|
||||||
|
|
||||||
/* Convert rtimer ticks to clock and vice versa */
|
/* Convert rtimer ticks to clock and vice versa */
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
Copyright (c) 2001-2003 Chris Liechti <cliechti@gmx.net>
|
|
||||||
|
|
||||||
All Rights Reserved.
|
|
||||||
|
|
||||||
This is the Python license. In short, you can use this product in
|
|
||||||
commercial and non-commercial applications, modify it, redistribute it.
|
|
||||||
A notification to the author when you use and/or modify it is welcome.
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING THIS SOFTWARE
|
|
||||||
============================================
|
|
||||||
|
|
||||||
LICENSE AGREEMENT
|
|
||||||
-----------------
|
|
||||||
|
|
||||||
1. This LICENSE AGREEMENT is between the copyright holder of this
|
|
||||||
product, and the Individual or Organization ("Licensee") accessing
|
|
||||||
and otherwise using this product in source or binary form and its
|
|
||||||
associated documentation.
|
|
||||||
|
|
||||||
2. Subject to the terms and conditions of this License Agreement,
|
|
||||||
the copyright holder hereby grants Licensee a nonexclusive,
|
|
||||||
royalty-free, world-wide license to reproduce, analyze, test,
|
|
||||||
perform and/or display publicly, prepare derivative works, distribute,
|
|
||||||
and otherwise use this product alone or in any derivative version,
|
|
||||||
provided, however, that copyright holders License Agreement and
|
|
||||||
copyright holders notice of copyright are retained in this product
|
|
||||||
alone or in any derivative version prepared by Licensee.
|
|
||||||
|
|
||||||
3. In the event Licensee prepares a derivative work that is based on
|
|
||||||
or incorporates this product or any part thereof, and wants to make
|
|
||||||
the derivative work available to others as provided herein, then
|
|
||||||
Licensee hereby agrees to include in any such work a brief summary of
|
|
||||||
the changes made to this product.
|
|
||||||
|
|
||||||
4. The copyright holder is making this product available to Licensee
|
|
||||||
on an "AS IS" basis. THE COPYRIGHT HOLDER MAKES NO REPRESENTATIONS
|
|
||||||
OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT
|
|
||||||
LIMITATION, THE COPYRIGHT HOLDER MAKES NO AND DISCLAIMS ANY
|
|
||||||
REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR
|
|
||||||
ANY PARTICULAR PURPOSE OR THAT THE USE OF THIS PRODUCT WILL
|
|
||||||
NOT INFRINGE ANY THIRD PARTY RIGHTS.
|
|
||||||
|
|
||||||
5. THE COPYRIGHT HOLDER SHALL NOT BE LIABLE TO LICENSEE OR ANY
|
|
||||||
OTHER USERS OF THIS PRODUCT FOR ANY INCIDENTAL, SPECIAL, OR
|
|
||||||
CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING,
|
|
||||||
DISTRIBUTING, OR OTHERWISE USING THIS PRODUCT, OR ANY
|
|
||||||
DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY
|
|
||||||
THEREOF.
|
|
||||||
|
|
||||||
6. This License Agreement will automatically terminate upon a
|
|
||||||
material breach of its terms and conditions.
|
|
||||||
|
|
||||||
7. Nothing in this License Agreement shall be deemed to create any
|
|
||||||
relationship of agency, partnership, or joint venture between the
|
|
||||||
copyright holder and Licensee. This License Agreement does not grant
|
|
||||||
permission to use trademarks or trade names from the copyright holder
|
|
||||||
in a trademark sense to endorse or promote products or services of
|
|
||||||
Licensee, or any third party.
|
|
||||||
|
|
||||||
8. By copying, installing or otherwise using this product, Licensee
|
|
||||||
agrees to be bound by the terms and conditions of this License
|
|
||||||
Agreement.
|
|
@ -1,295 +0,0 @@
|
|||||||
#!/usr/bin/perl -w
|
|
||||||
use strict;
|
|
||||||
# $Id: motelist-z1,v 1.1 2010/08/24 15:48:20 joxe Exp $
|
|
||||||
# @author Cory Sharp <cory@moteiv.com>
|
|
||||||
# @author Joe Polastre
|
|
||||||
|
|
||||||
my $help = <<'EOF';
|
|
||||||
usage: motelist [options]
|
|
||||||
|
|
||||||
$Revision: 1.1 $
|
|
||||||
|
|
||||||
options:
|
|
||||||
-h display this help
|
|
||||||
-c compact format, not pretty but easier for parsing
|
|
||||||
-f specify the usb-serial file (for smote.cs)
|
|
||||||
-k kernel version: 2.4, 2.6, auto (default)
|
|
||||||
-m method to scan usb: procfs, sysfs, auto (default)
|
|
||||||
-dev_prefix force the device prefix for the serial device
|
|
||||||
-usb display extra usb information
|
|
||||||
-b specify which Zolertia board to list (z1, remote, etc)
|
|
||||||
EOF
|
|
||||||
|
|
||||||
my %Opt = (
|
|
||||||
compact => 0,
|
|
||||||
usb => 0,
|
|
||||||
board => "",
|
|
||||||
method => "auto",
|
|
||||||
kernel => "auto",
|
|
||||||
dev_prefix => [ "/dev/usb/tts/", "/dev/ttyUSB", "/dev/tts/USB" ],
|
|
||||||
usbserial => "sudo cat /proc/tty/driver/usbserial |",
|
|
||||||
);
|
|
||||||
|
|
||||||
while (@ARGV) {
|
|
||||||
last unless $ARGV[0] =~ /^-/;
|
|
||||||
my $opt = shift @ARGV;
|
|
||||||
if( $opt eq "-h" ) { print "$help\n"; exit 0; }
|
|
||||||
elsif( $opt eq "-c" ) { $Opt{compact} = 1; }
|
|
||||||
elsif( $opt eq "-f" ) { $Opt{usbserial} = shift @ARGV; }
|
|
||||||
elsif( $opt eq "-k" ) { $Opt{kernel} = shift @ARGV; }
|
|
||||||
elsif( $opt eq "-m" ) { $Opt{method} = shift @ARGV; }
|
|
||||||
elsif( $opt eq "-dev_prefix" ) { $Opt{dev_prefix} = shift @ARGV; }
|
|
||||||
elsif( $opt eq "-usb" ) { $Opt{usb} = 1; }
|
|
||||||
elsif( $opt eq "-b" ) { $Opt{board} = shift @ARGV; }
|
|
||||||
else { print STDERR "$help\nerror, unknown command line option $opt\n"; exit 1; }
|
|
||||||
}
|
|
||||||
|
|
||||||
if( $Opt{kernel} eq "auto" ) {
|
|
||||||
$Opt{kernel} = "unknown";
|
|
||||||
$Opt{kernel} = $1 if snarf("/proc/version") =~ /\bLinux version (\d+\.\d+)/;
|
|
||||||
}
|
|
||||||
|
|
||||||
if( $Opt{method} eq "auto" ) {
|
|
||||||
$Opt{method} = ($Opt{kernel} eq "2.4") ? "procfs" : "sysfs";
|
|
||||||
}
|
|
||||||
|
|
||||||
if( $Opt{board} eq "z1" ) {
|
|
||||||
$Opt{board} = "Zolertia Z1";
|
|
||||||
} elsif( $Opt{board} eq "remote" ) {
|
|
||||||
$Opt{board} = "Zolertia RE-Mote platform";
|
|
||||||
} elsif( $Opt{board} eq "firefly" ) {
|
|
||||||
$Opt{board} = "Zolertia Firefly platform";
|
|
||||||
} elsif( $Opt{board} eq "orion" ) {
|
|
||||||
$Opt{board} = "Zolertia Orion Ethernet router";
|
|
||||||
}
|
|
||||||
|
|
||||||
my @devs = $Opt{method} eq "procfs" ? scan_procfs() : scan_sysfs();
|
|
||||||
print_motelist( sort { cmp_usbdev($a,$b) } @devs );
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# SysFS
|
|
||||||
#
|
|
||||||
sub scan_sysfs {
|
|
||||||
|
|
||||||
my $tmp = '($_->{UsbVendor}||"") eq "10c4" && ($_->{UsbProduct}||"") eq "ea60"';
|
|
||||||
|
|
||||||
if($Opt{board}) {
|
|
||||||
$tmp = '($_->{ProductString}||"") eq $Opt{board} && ' . $tmp
|
|
||||||
}
|
|
||||||
|
|
||||||
# Scan /sys/bus/usb/drivers/usb for CP210x devices
|
|
||||||
my @cpdevs =
|
|
||||||
grep { eval "$tmp" }
|
|
||||||
map { {
|
|
||||||
SysPath => $_,
|
|
||||||
UsbVendor => snarf("$_/idVendor",1),
|
|
||||||
UsbProduct => snarf("$_/idProduct",1),
|
|
||||||
ProductString => snarf("$_/product",1),
|
|
||||||
} }
|
|
||||||
glob("/sys/bus/usb/drivers/usb/*");
|
|
||||||
|
|
||||||
# Gather information about each CP210x device
|
|
||||||
for my $f (@cpdevs) {
|
|
||||||
my $syspath = $f->{SysPath};
|
|
||||||
$f->{InfoSerial} = snarf("$syspath/serial",1);
|
|
||||||
$f->{InfoManufacturer} = snarf("$syspath/manufacturer",1);
|
|
||||||
$f->{InfoProduct} = snarf("$syspath/product",1);
|
|
||||||
$f->{UsbDevNum} = snarf("$syspath/devnum",1);
|
|
||||||
|
|
||||||
my $devstr = readlink($syspath);
|
|
||||||
if( $devstr =~ m{([^/]+)/usb(\d+)/.*-([^/]+)$} ) {
|
|
||||||
$f->{UsbPath} = "usb-$1-$3";
|
|
||||||
$f->{UsbBusNum} = $2;
|
|
||||||
}
|
|
||||||
($f->{SysDev} = $syspath) =~ s{^.*/}{};
|
|
||||||
|
|
||||||
my $port = "$syspath/$f->{SysDev}:1.0";
|
|
||||||
($f->{DriverName} = readlink("$port/driver")) =~ s{^.*/}{} if -l "$port/driver";
|
|
||||||
($f->{SerialDevName} = (glob("$port/tty*"),undef)[0]) =~ s{^.*/}{};
|
|
||||||
$f->{SerialDevNum} = $1 if $f->{SerialDevName} =~ /(\d+)/;
|
|
||||||
$f->{SerialDevName} = getSerialDevName( $f->{SerialDevNum} ) || " (none)";
|
|
||||||
}
|
|
||||||
return @cpdevs;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Scan Procfs
|
|
||||||
#
|
|
||||||
sub scan_procfs {
|
|
||||||
|
|
||||||
my $text_devs = snarf("< /proc/bus/usb/devices");
|
|
||||||
my $text_serial = snarf($Opt{usbserial});
|
|
||||||
|
|
||||||
my @usbdevs = map { {parse_usb_devices_text($_)} }
|
|
||||||
grep { !/^\s*$/ } split /\n+(?=T:)/, $text_devs;
|
|
||||||
my %usbtree = build_usb_tree( @usbdevs );
|
|
||||||
my %usbserialtree = build_usbserial_tree( $text_serial );
|
|
||||||
for my $tts ( values %usbserialtree ) {
|
|
||||||
$usbtree{usbkey($tts->{path})}{usbserial} = $tts if defined $tts->{path};
|
|
||||||
}
|
|
||||||
|
|
||||||
my @cpdevs = map { {
|
|
||||||
UsbVendor => $_->{Vendor},
|
|
||||||
UsbProduct => $_->{ProdID},
|
|
||||||
InfoManufacturer => $_->{Manufacturer},
|
|
||||||
InfoProduct => $_->{Product},
|
|
||||||
InfoSerial => $_->{SerialNumber},
|
|
||||||
UsbBusNum => $_->{nbus},
|
|
||||||
UsbDevNum => $_->{ndev},
|
|
||||||
UsbPath => (($Opt{kernel} eq "2.4") ? $_->{usbserial}{path} : $_->{usbpath}),
|
|
||||||
DriverName => $_->{driver},
|
|
||||||
SerialDevNum => $_->{usbserial}{tts},
|
|
||||||
SerialDevName => getSerialDevName($_->{usbserial}{tts}) || " (none)",
|
|
||||||
} }
|
|
||||||
grep { ($_->{Vendor}||"") eq "0403" && ($_->{ProdID}||"") eq "6001" }
|
|
||||||
values %usbtree;
|
|
||||||
|
|
||||||
return @cpdevs;
|
|
||||||
}
|
|
||||||
|
|
||||||
sub build_usb_tree {
|
|
||||||
my @devs = @_;
|
|
||||||
my %tree = ();
|
|
||||||
for my $dev (sort { $a->{Lev} <=> $b->{Lev} } @devs) {
|
|
||||||
my ($bus,$lev,$prnt) = ( $dev->{Bus}+0, $dev->{Lev}+0, $dev->{Prnt}+0 );
|
|
||||||
my $devnum = $dev->{"Dev#"}+0;
|
|
||||||
$dev->{nbus} = $bus;
|
|
||||||
$dev->{ndev} = $devnum;
|
|
||||||
$tree{"bus$bus"} = {} unless exists $tree{"bus$bus"};
|
|
||||||
$tree{"bus$bus"}{"dev$devnum"} = $dev;
|
|
||||||
if( $lev == 0 ) {
|
|
||||||
$dev->{usbpath} = "usb-$dev->{SerialNumber}";
|
|
||||||
} else {
|
|
||||||
my $sep = ($lev==1) ? "-" : ".";
|
|
||||||
$dev->{parent} = $tree{"bus$bus"}{"dev$prnt"};
|
|
||||||
$dev->{usbpath} = $dev->{parent}{usbpath} . $sep . ($dev->{Port}+1);
|
|
||||||
}
|
|
||||||
$tree{usbkey($dev->{usbpath})} = $dev;
|
|
||||||
}
|
|
||||||
return %tree;
|
|
||||||
}
|
|
||||||
|
|
||||||
sub parse_usb_devices_text {
|
|
||||||
my $text = shift;
|
|
||||||
$text =~ s/^\S+\s*//gm;
|
|
||||||
return ($text =~ m/([^\s=]+)=\s*(.*?\S)\s*(?=[^\s=]+=|$)/mg);
|
|
||||||
}
|
|
||||||
|
|
||||||
sub build_usbserial_tree {
|
|
||||||
my $text = shift;
|
|
||||||
my %tree = ();
|
|
||||||
while( $text =~ /^([^:]+):(.*)/mg ) {
|
|
||||||
my ($tts,$params) = ($1,$2);
|
|
||||||
$tree{$tts} = { tts => $tts };
|
|
||||||
while ($params =~ m/\s+([^:]+):(?:"([^"]*)"|(\S+))/g) {
|
|
||||||
$tree{$tts}{$1} = $2||$3;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return %tree;
|
|
||||||
}
|
|
||||||
|
|
||||||
sub usbkey {
|
|
||||||
if( $Opt{kernel} eq "2.4" ) {
|
|
||||||
(my $key = $_[0]) =~ s/^.*-//;
|
|
||||||
return $key;
|
|
||||||
}
|
|
||||||
return $_[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# getSerialDevName
|
|
||||||
#
|
|
||||||
# For each device, force to use dev_prefix if it's not an array. Otherwise,
|
|
||||||
# assume it's a list of candidate prefixes. Check them and commit to the
|
|
||||||
# first one that actually exists.
|
|
||||||
#
|
|
||||||
sub getSerialDevName {
|
|
||||||
my $devnum = shift;
|
|
||||||
my $devname = undef;
|
|
||||||
if( defined $devnum ) {
|
|
||||||
if( ref($Opt{dev_prefix}) eq "ARRAY" ) {
|
|
||||||
$devname = $devnum;
|
|
||||||
for my $prefix (@{$Opt{dev_prefix}}) {
|
|
||||||
my $file = $prefix . $devnum;
|
|
||||||
if( -e $file ) { $devname = $file; last; }
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$devname = $Opt{dev_prefix} . $devnum;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $devname;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Print motelist
|
|
||||||
#
|
|
||||||
sub print_motelist {
|
|
||||||
my @devs = @_;
|
|
||||||
|
|
||||||
# If none were found, quit
|
|
||||||
if( @devs == 0 ) {
|
|
||||||
print "No devices found.\n";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Print a header
|
|
||||||
if( !$Opt{compact} ) {
|
|
||||||
if( $Opt{usb} ) {
|
|
||||||
print << "EOF" unless $Opt{compact};
|
|
||||||
--- --- ------------------------ -------------- ---------------- -------------------------------------
|
|
||||||
Bus Dev USB Path Reference Device Description
|
|
||||||
--- --- ------------------------ -------------- ---------------- -------------------------------------
|
|
||||||
EOF
|
|
||||||
} else {
|
|
||||||
print << "EOF" unless $Opt{compact};
|
|
||||||
-------------- ---------------- ---------------------------------------------
|
|
||||||
Reference Device Description
|
|
||||||
-------------- ---------------- ---------------------------------------------
|
|
||||||
EOF
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# Print the usb information
|
|
||||||
for my $dev (sort { cmp_usbdev($a,$b) } @devs) {
|
|
||||||
my $desc = join( " ", $dev->{InfoManufacturer}||"", $dev->{InfoProduct}||"" ) || " (none)";
|
|
||||||
my @output = ( $dev->{InfoSerial}||" (none)", $dev->{SerialDevName}, $desc );
|
|
||||||
@output = ( $dev->{UsbBusNum}, $dev->{UsbDevNum}, $dev->{UsbPath}, @output ) if $Opt{usb};
|
|
||||||
if( $Opt{compact} ) {
|
|
||||||
print join(",",@output) . "\n";
|
|
||||||
} else {
|
|
||||||
printf( ($Opt{usb}?"%3d %3d %-24s ":"")."%-14s %-16s %s\n", @output );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Cmp Usbdev's
|
|
||||||
#
|
|
||||||
sub cmp_usbdev {
|
|
||||||
my ($a,$b) = @_;
|
|
||||||
if( defined $a->{SerialDevNum} ) {
|
|
||||||
if( defined $b->{SerialDevNum} ) {
|
|
||||||
return $a->{SerialDevNum} <=> $b->{SerialDevNum};
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
return 1 if defined $b->{SerialDevNum};
|
|
||||||
return ($a->{InfoSerial}||"") cmp ($b->{InfoSerial}||"");
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
|
||||||
# Read a file in
|
|
||||||
#
|
|
||||||
sub snarf {
|
|
||||||
open my $fh, $_[0] or return undef;
|
|
||||||
my $text = do{local $/;<$fh>};
|
|
||||||
close $fh;
|
|
||||||
$text =~ s/\s+$// if $_[1];
|
|
||||||
return $text;
|
|
||||||
}
|
|
||||||
|
|
@ -1,75 +0,0 @@
|
|||||||
#!/usr/bin/perl -w
|
|
||||||
use strict;
|
|
||||||
|
|
||||||
my $help = <<'EOF';
|
|
||||||
usage: motelist [options]
|
|
||||||
|
|
||||||
options:
|
|
||||||
-h display this help
|
|
||||||
-c compact format, not pretty but easier for parsing
|
|
||||||
EOF
|
|
||||||
|
|
||||||
my %Opt = (
|
|
||||||
compact => 0,
|
|
||||||
dev_prefix => [ "/dev/tty.SLAB" ],
|
|
||||||
);
|
|
||||||
|
|
||||||
while (@ARGV) {
|
|
||||||
last unless $ARGV[0] =~ /^-/;
|
|
||||||
my $opt = shift @ARGV;
|
|
||||||
if( $opt eq "-h" ) { print "$help\n"; exit 0; }
|
|
||||||
elsif( $opt eq "-c" ) { $Opt{compact} = 1; }
|
|
||||||
else { print STDERR "$help\nerror, unknown command line option $opt\n"; exit 1; }
|
|
||||||
}
|
|
||||||
|
|
||||||
print_motelist( scan_dev() );
|
|
||||||
|
|
||||||
#
|
|
||||||
# Scan /dev for tty.SLAB*
|
|
||||||
#
|
|
||||||
sub scan_dev {
|
|
||||||
my @devs;
|
|
||||||
foreach (`ls /dev/tty.SLAB* 2>&1`) {
|
|
||||||
my($dev, $serial) = /(\/dev\/tty.SLAB(\S+))/;
|
|
||||||
if ($serial ne "*:") {
|
|
||||||
my $d;
|
|
||||||
$d->{"InfoSerial"} = $serial;
|
|
||||||
$d->{"SerialDevName"} = $dev;
|
|
||||||
push(@devs, $d);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return @devs;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Print motelist
|
|
||||||
#
|
|
||||||
sub print_motelist {
|
|
||||||
my @devs = @_;
|
|
||||||
|
|
||||||
# If none were found, quit
|
|
||||||
if( @devs == 0 ) {
|
|
||||||
#print "No devices found.\n";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Print a header
|
|
||||||
if( !$Opt{compact} ) {
|
|
||||||
print << "EOF" unless $Opt{compact};
|
|
||||||
Reference Device Description
|
|
||||||
---------- --------------------------- ---------------------------------------
|
|
||||||
EOF
|
|
||||||
}
|
|
||||||
|
|
||||||
# Print the usb information
|
|
||||||
for my $dev (@devs) {
|
|
||||||
my $desc = "(none)";
|
|
||||||
my @output = ( $dev->{"InfoSerial"}, $dev->{"SerialDevName"}, $desc );
|
|
||||||
if( $Opt{compact} ) {
|
|
||||||
print join(",",@output) . "\n";
|
|
||||||
} else {
|
|
||||||
printf( "%-10s %-27s %s\n", @output );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user