146 lines
4.2 KiB
C
146 lines
4.2 KiB
C
/*
|
|
* Copyright (c) 2015, Nordic Semiconductor
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* \addtogroup platform
|
|
* @{
|
|
*
|
|
* \addtogroup nrf52dk nRF52 Development Kit
|
|
* @{
|
|
*
|
|
* \addtogroup nrf52dk-platform-conf Platform configuration
|
|
* @{
|
|
* \file
|
|
* Platform features configuration.
|
|
* \author
|
|
* Wojciech Bober <wojciech.bober@nordicsemi.no>
|
|
*
|
|
*/
|
|
#ifndef PLATFORM_CONF_H_
|
|
#define PLATFORM_CONF_H_
|
|
|
|
#include "boards.h"
|
|
|
|
#define PLATFORM_HAS_BATTERY 0
|
|
#define PLATFORM_HAS_RADIO 0
|
|
#define PLATFORM_HAS_TEMPERATURE 1
|
|
|
|
/**
|
|
* \name Leds configurations
|
|
*
|
|
* On nRF52dk all leds are green.
|
|
*
|
|
* @{
|
|
*/
|
|
#define PLATFORM_HAS_LEDS 1
|
|
|
|
#define LEDS_1 (1 << (LED_1 - LED_START)) // 1
|
|
#define LEDS_2 (1 << (LED_2 - LED_START)) // 2
|
|
#define LEDS_3 (1 << (LED_3 - LED_START)) // 4
|
|
#define LEDS_4 (1 << (LED_4 - LED_START)) // 8
|
|
|
|
#define LEDS_GREEN LEDS_1
|
|
#define LEDS_YELLOW LEDS_2
|
|
#define LEDS_RED LEDS_3
|
|
#define LEDS_BLUE LEDS_4
|
|
|
|
#define LEDS_CONF_ALL (LEDS_1 | LEDS_2 | LEDS_3 | LEDS_4)
|
|
|
|
/**
|
|
* \brief If set to 1 then LED1 and LED2 are used by the
|
|
* platform to indicate BLE connection state.
|
|
*/
|
|
#define PLATFORM_INDICATE_BLE_STATE 1
|
|
/** @} */
|
|
|
|
/**
|
|
* \name Button configurations
|
|
*
|
|
* @{
|
|
*/
|
|
/* Notify various examples that we have Buttons */
|
|
#define PLATFORM_HAS_BUTTON 1
|
|
|
|
/*
|
|
* Override button symbols from dev/button-sensor.h, for the examples that
|
|
* include it
|
|
*/
|
|
#define button_sensor button_1
|
|
#define button_sensor2 button_2
|
|
|
|
/**
|
|
* \brief nRF52 RTC instance to be used for Contiki clock driver.
|
|
* \note RTC 0 is used by the SoftDevice.
|
|
*/
|
|
#define PLATFORM_RTC_INSTANCE_ID 1
|
|
|
|
/**
|
|
* \brief nRF52 timer instance to be used for Contiki rtimer driver.
|
|
* \note Timer 0 is used by the SoftDevice.
|
|
*/
|
|
#define PLATFORM_TIMER_INSTANCE_ID 1
|
|
|
|
/** @} */
|
|
/*---------------------------------------------------------------------------*/
|
|
/**
|
|
* \name Compiler configuration and platform-specific type definitions
|
|
*
|
|
* Those values are not meant to be modified by the user
|
|
* @{
|
|
*/
|
|
#define CLOCK_CONF_SECOND 128
|
|
|
|
/* Compiler configurations */
|
|
#define CCIF
|
|
#define CLIF
|
|
|
|
/* Platform typedefs */
|
|
typedef uint32_t clock_time_t;
|
|
typedef uint32_t uip_stats_t;
|
|
|
|
/* Clock (time) comparison macro */
|
|
#define CLOCK_LT(a, b) ((signed long)((a) - (b)) < 0)
|
|
|
|
#define RTIMER_ARCH_SECOND 62500
|
|
/*
|
|
* rtimer.h typedefs rtimer_clock_t as unsigned short. We need to define
|
|
* RTIMER_CLOCK_DIFF to override this
|
|
*/
|
|
typedef uint32_t rtimer_clock_t;
|
|
#define RTIMER_CLOCK_DIFF(a,b) ((int32_t)((a)-(b)))
|
|
|
|
/** @} */
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @}
|
|
* @}
|
|
* @}
|
|
*/
|
|
#endif /* PLATFORM_CONF_H_ */
|