mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
iot-lab_M3: rename to iotlab_m3
This commit is contained in:
parent
3d065310c1
commit
d46f542220
@ -426,6 +426,6 @@ endif
|
||||
help:
|
||||
@$(MAKE) -qp | sed -ne 's/\(^[a-z][a-z_-]*\):.*/\1/p' | sort | uniq
|
||||
|
||||
ifneq (,$(filter iot-lab_M3 wsn430-v1_3b wsn430-v1_4,$(BOARD)))
|
||||
ifneq (,$(filter iotlab_m3 wsn430-v1_3b wsn430-v1_4,$(BOARD)))
|
||||
include $(RIOTBASE)/dist/testbed-support/Makefile.iotlab
|
||||
endif
|
||||
|
@ -7,11 +7,11 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup boards_iot-lab_M3
|
||||
* @ingroup boards_iotlab_m3
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Board specific implementations for the iot-lab_M3 board
|
||||
* @brief Board specific implementations for the iotlab_m3 board
|
||||
*
|
||||
* @author Thomas Eichinger <thomas.eichinger@fu-berlin.de>
|
||||
*
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup board_iot-lab_M3
|
||||
* @ingroup board_iotlab_m3
|
||||
* @{
|
||||
*
|
||||
* @file
|
@ -7,13 +7,13 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup boards_iot-lab_M3 IoT-LAB M3 open node
|
||||
* @defgroup boards_iotlab_m3 IoT-LAB M3 open node
|
||||
* @ingroup boards
|
||||
* @brief Board specific files for the iot-lab_M3 board.
|
||||
* @brief Board specific files for the iotlab_m3 board.
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Board specific definitions for the iot-lab_M3 board.
|
||||
* @brief Board specific definitions for the iotlab_m3 board.
|
||||
*
|
||||
* @author Alaeddine Weslati <alaeddine.weslati@inria.fr>
|
||||
* @author Thomas Eichinger <thomas.eichinger@fu-berlin.de>
|
@ -7,11 +7,11 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup boards_iot-lab_M3
|
||||
* @ingroup boards_iotlab_m3
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Peripheral MCU configuration for the iot-lab_M3 board
|
||||
* @brief Peripheral MCU configuration for the iotlab_m3 board
|
||||
*
|
||||
* @author Thomas Eichinger <thomas.eichinger@fu-berlin.de>
|
||||
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2
dist/tools/sniffer/README.md
vendored
2
dist/tools/sniffer/README.md
vendored
@ -62,7 +62,7 @@ The script has the following parameters:
|
||||
### Examples
|
||||
|
||||
The following examples are made when using the sniffer application together with
|
||||
an `iot-lab_M3` node that is connected to /dev/ttyUSB1 (or COM1) and runs per
|
||||
an `iotlab_m3` node that is connected to /dev/ttyUSB1 (or COM1) and runs per
|
||||
default with a baudrate of 500000.
|
||||
|
||||
#### Linux
|
||||
|
@ -47,7 +47,7 @@ ifneq (,$(filter msba2,$(BOARD)))
|
||||
USEMODULE += mci
|
||||
USEMODULE += random
|
||||
endif
|
||||
ifneq (,$(filter iot-lab_M3,$(BOARD)))
|
||||
ifneq (,$(filter iotlab_m3,$(BOARD)))
|
||||
USEMODULE += isl29020
|
||||
USEMODULE += lps331ap
|
||||
USEMODULE += l3g4200d
|
||||
|
@ -1,7 +1,7 @@
|
||||
# OpenWSN on RIOT
|
||||
|
||||
This port of OpenWSN to RIOT is based on current OpenWSN upstream providing a
|
||||
BSP with RIOT's interfaces. Currently supported are iot-lab_M3 and fox. More
|
||||
BSP with RIOT's interfaces. Currently supported are iotlab_m3 and fox. More
|
||||
boards will follow through improvements in netdev radio driver interface.
|
||||
|
||||
# Usage
|
||||
@ -11,7 +11,7 @@ as root or listening node. And providing a sample Makefile.
|
||||
|
||||
Build using
|
||||
```Bash
|
||||
$> export BOARD=iot-lab_M3
|
||||
$> export BOARD=iotlab_m3
|
||||
$> export PORT=/dev/ttyTHEPORTOFYOURIOTLAB
|
||||
$> make -B clean flash term
|
||||
```
|
||||
|
@ -87,7 +87,7 @@ Core
|
||||
|
||||
Supported platforms
|
||||
-------------------
|
||||
* improved iot-lab_M3 support
|
||||
* improved iotlab_m3 support
|
||||
* major improvements on the mbed LPC1768
|
||||
* improved at86rf231 radio driver
|
||||
* fixed hwtimer for MSP430
|
||||
|
@ -11,7 +11,7 @@ ifneq (,$(filter samr21-xpro,$(BOARD)))
|
||||
DRIVER ?= at86rf233
|
||||
USE_BOARD_PARAMETERS:=true
|
||||
endif
|
||||
ifneq (,$(filter iot-lab_M3,$(BOARD)))
|
||||
ifneq (,$(filter iotlab_m3,$(BOARD)))
|
||||
DRIVER ?= at86rf231
|
||||
USE_BOARD_PARAMETERS:=true
|
||||
endif
|
||||
|
@ -4,7 +4,7 @@ include ../Makefile.tests_common
|
||||
FEATURES_REQUIRED = periph_i2c
|
||||
|
||||
# Define default pin mappings for some boards:
|
||||
ifneq (,$(filter iot-lab_M3,$(BOARD)))
|
||||
ifneq (,$(filter iotlab_m3,$(BOARD)))
|
||||
export TEST_ISL29020_ADDR = 68
|
||||
export TEST_ISL29020_I2C ?= I2C_0
|
||||
endif
|
||||
|
@ -4,7 +4,7 @@ include ../Makefile.tests_common
|
||||
FEATURES_REQUIRED = periph_i2c
|
||||
|
||||
# Define default pin mappings for some boards:
|
||||
ifneq (,$(filter iot-lab_M3,$(BOARD)))
|
||||
ifneq (,$(filter iotlab_m3,$(BOARD)))
|
||||
export TEST_LSM303DLHC_MAG_ADDR=30
|
||||
export TEST_LSM303DLHC_ACC_ADDR=25
|
||||
export TEST_LSM303DLHC_I2C ?=I2C_0
|
||||
|
@ -9,7 +9,7 @@ BOARD_WHITELIST := \
|
||||
cc2538dk \
|
||||
f4vi1 \
|
||||
fox \
|
||||
iot-lab_M3 \
|
||||
iotlab_m3 \
|
||||
mbed_lpc1768 \
|
||||
msbiot \
|
||||
mulle \
|
||||
|
Loading…
Reference in New Issue
Block a user