Zoul: created RE-Mote rev.A specific profile
This commit is contained in:
parent
26ed666948
commit
89c507f509
|
@ -32,8 +32,8 @@
|
||||||
* \addtogroup remote-power-management-test
|
* \addtogroup remote-power-management-test
|
||||||
* @{
|
* @{
|
||||||
*
|
*
|
||||||
* Test the RE-Mote's power management features, shutdown mode and battery
|
* Test the RE-Mote's (revision A) power management features, shutdown mode and
|
||||||
* management
|
* battery management
|
||||||
*
|
*
|
||||||
* @{
|
* @{
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,9 +4,15 @@ ifndef CONTIKI
|
||||||
$(error CONTIKI not defined! You must specify where CONTIKI resides!)
|
$(error CONTIKI not defined! You must specify where CONTIKI resides!)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
### If no board is specified the default option is the RE-Mote
|
### If no board is specified the default option is the RE-Mote revision B
|
||||||
ifeq ($(BOARD),)
|
ifeq ($(BOARD),)
|
||||||
BOARD=remote
|
BOARD = remote-revb
|
||||||
|
endif
|
||||||
|
|
||||||
|
### As previously the RE-Mote revision A was plainly defined as remote, keep for
|
||||||
|
### backward compatibility
|
||||||
|
ifeq ($(BOARD), remote)
|
||||||
|
override BOARD = remote-reva
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PYTHON = python
|
PYTHON = python
|
||||||
|
@ -45,7 +51,7 @@ MODULES += core/net core/net/mac \
|
||||||
|
|
||||||
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
|
### Use the specific Zoul subplatform to query for connected devices
|
||||||
ifdef MOTELIST_ZOLERTIA
|
ifdef MOTELIST_ZOLERTIA
|
||||||
MOTELIST_FLAGS += -b $(MOTELIST_ZOLERTIA)
|
MOTELIST_FLAGS += -b $(MOTELIST_ZOLERTIA)
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Zolertia RE-Mote platform
|
Zolertia RE-Mote platform (revision A)
|
||||||
============================================
|
============================================
|
||||||
|
|
||||||
![Zolertia RE-Mote development platform][remote-front]
|
![Zolertia RE-Mote development platform][remote-front]
|
|
@ -29,11 +29,11 @@
|
||||||
*/
|
*/
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/**
|
/**
|
||||||
* \addtogroup remote
|
* \addtogroup remote-reva
|
||||||
* @{
|
* @{
|
||||||
*
|
*
|
||||||
* \file
|
* \file
|
||||||
* Board-initialisation for the Zolertia's RE-Mote platform
|
* Board-initialisation for the Zolertia's RE-Mote revision A platform
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
|
@ -33,7 +33,7 @@
|
||||||
* \addtogroup zoul-platforms
|
* \addtogroup zoul-platforms
|
||||||
* @{
|
* @{
|
||||||
*
|
*
|
||||||
* \defgroup remote RE-Mote platform
|
* \defgroup remote-reva RE-Mote platform revision A
|
||||||
*
|
*
|
||||||
* The RE-Mote was designed jointly with universities and industry partners in
|
* The RE-Mote was designed jointly with universities and industry partners in
|
||||||
* RERUM European project, to ease the development of private and secure
|
* RERUM European project, to ease the development of private and secure
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
* Shutdown mode to reduce its power consumption down to 300nA.
|
* Shutdown mode to reduce its power consumption down to 300nA.
|
||||||
*
|
*
|
||||||
* This file provides connectivity information on LEDs, Buttons, UART and
|
* This file provides connectivity information on LEDs, Buttons, UART and
|
||||||
* other RE-Mote peripherals
|
* other RE-Mote revision A peripherals
|
||||||
*
|
*
|
||||||
* This file can be used as the basis to configure other platforms using the
|
* This file can be used as the basis to configure other platforms using the
|
||||||
* cc2538 SoC.
|
* cc2538 SoC.
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
*
|
*
|
||||||
* \file
|
* \file
|
||||||
* Header file with definitions related to the I/O connections on the Zolertia's
|
* Header file with definitions related to the I/O connections on the Zolertia's
|
||||||
* RE-Mote platform, cc2538-based
|
* RE-Mote platform (revision A), cc2538-based
|
||||||
*
|
*
|
||||||
* \note Do not include this file directly. It gets included by contiki-conf
|
* \note Do not include this file directly. It gets included by contiki-conf
|
||||||
* after all relevant directives have been set.
|
* after all relevant directives have been set.
|
||||||
|
@ -485,7 +485,7 @@
|
||||||
* \name Device string used on startup
|
* \name Device string used on startup
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
#define BOARD_STRING "Zolertia RE-Mote platform"
|
#define BOARD_STRING "Zolertia RE-Mote revision A platform"
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
#endif /* BOARD_H_ */
|
#endif /* BOARD_H_ */
|
Loading…
Reference in a new issue