/** * \file * * \brief Atmel Common Sensor Service configuration parameters. * * This file defines tunable configuration constants for user selected API * features and functions. * * Copyright (c) 2011-2012 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * 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. The name of Atmel may not be used to endorse or promote products derived * from this software without specific prior written permission. * * 4. This software may only be redistributed and used in connection with an * Atmel microcontroller product. * * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL 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. * * \asf_license_stop * */ #ifndef _CONF_SENSORS_H_ #define _CONF_SENSORS_H_ /* Sensor Platform Board Configuration * * The Sensor API hardware abstraction layer is conditionally compiled * for a particular platform and target MCU based upon application and * toolchain constants exposed through the common board.h file. */ #include /* Atmel Software Framework (ASF) Interfaces */ #include #if UC3 # include #endif /** \name Redirect C Standard I/O (USB or USART) */ /** @{ */ #if defined(CONF_STDIO_REDIRECT) #if (UC3A || UC3B || UC3C || XMEGA_AU || XMEGA_B) # include # define CONF_STDIO_USB /* !< Configure C Standard I/O over USB/CDC */ #elif (UC3L || XMEGA_A1) # include # define CONF_STDIO_SERIAL /* !< Configure C Standard I/O over USART */ #endif #endif /** @} */ /** \name Xplained Platform USART Configuration */ /** @{ */ #if (BOARD == XMEGA_A1_XPLAINED) # define CONFIG_USART_IF (USARTC0) #elif (BOARD == XMEGA_B1_XPLAINED) # define CONFIG_USART_IF (USARTE0) #elif (BOARD == XMEGA_A3BU_XPLAINED) # define CONFIG_USART_IF (USARTD0) #elif (BOARD == UC3_L0_XPLAINED) # define CONFIG_USART_IF (AVR32_USART2) #elif (BOARD == UC3_A3_XPLAINED) # define CONFIG_USART_IF (AVR32_USART2) #else # define CONFIG_USART_IF (NULL) #endif #if XMEGA # define CONFIG_USART_BAUDRATE (115200) # define CONFIG_USART_CHAR_LENGTH (USART_CHSIZE_8BIT_gc) # define CONFIG_USART_PARITY (USART_PMODE_DISABLED_gc) # define CONFIG_USART_STOP_BIT (false) #else # define CONFIG_USART_BAUDRATE (115200) # define CONFIG_USART_CHAR_LENGTH (8) # define CONFIG_USART_PARITY (USART_NO_PARITY) # define CONFIG_USART_STOP_BIT (USART_1_STOPBIT) #endif /** @} */ /** \name Platform TWI and SPI Bus Configuration */ /** @{ */ #if (BOARD == XMEGA_A1_XPLAINED) # define CONFIG_TWI_MASTER_IF (TWIF) # define CONFIG_SPI_MASTER_IF (SPIF) #elif (BOARD == XMEGA_B1_XPLAINED) # define CONFIG_TWI_MASTER_IF (TWIC) # define CONFIG_SPI_MASTER_IF (SPIC) #elif (BOARD == XMEGA_A3BU_XPLAINED) # define CONFIG_TWI_MASTER_IF (TWIC) # define CONFIG_SPI_MASTER_IF (SPIC) #elif (BOARD == UC3_L0_XPLAINED) # define CONFIG_TWI_MASTER_IF (AVR32_TWIM0) # define CONFIG_SPI_MASTER_IF (AVR32_SPI) #elif (BOARD == UC3_A3_XPLAINED) # define CONFIG_TWI_MASTER_IF (AVR32_TWIM0) # define CONFIG_SPI_MASTER_IF (AVR32_SPI0) #else # define CONFIG_TWI_MASTER_IF (NULL) # define CONFIG_SPI_MASTER_IF (NULL) #endif #define CONFIG_TWI_BAUDRATE (400000) #define CONFIG_TWI_OFFSET (0) #define CONFIG_SPI_BAUDRATE (12000000) #define CONFIG_SPI_OFFSET (0) #undef CONF_EVENT_COUNTERS /**< Development and Debugging Facilities */ /** @} */ #endif