1 /***************************************************************************//**
\r
3 * @brief Provide BSP (board support package) configuration parameters.
\r
5 *******************************************************************************
\r
7 * <b>(C) Copyright 2014 Silicon Labs, http://www.silabs.com</b>
\r
8 *******************************************************************************
\r
10 * This file is licensed under the Silabs License Agreement. See the file
\r
11 * "Silabs_License_Agreement.txt" for details. Before using this software for
\r
12 * any purpose, you must agree to the terms of that agreement.
\r
14 ******************************************************************************/
\r
16 #ifndef __BSPCONFIG_H
\r
17 #define __BSPCONFIG_H
\r
20 #define BSP_STK_2200
\r
22 #define BSP_BCC_USART UART0
\r
23 #define BSP_BCC_CLK cmuClock_UART0
\r
24 #define BSP_BCC_LOCATION UART_ROUTE_LOCATION_LOC1
\r
25 #define BSP_BCC_TXPORT gpioPortE
\r
26 #define BSP_BCC_TXPIN 0
\r
27 #define BSP_BCC_RXPORT gpioPortE
\r
28 #define BSP_BCC_RXPIN 1
\r
29 #define BSP_BCC_ENABLE_PORT gpioPortF
\r
30 #define BSP_BCC_ENABLE_PIN 7
\r
32 #define BSP_GPIO_LEDS
\r
33 #define BSP_NO_OF_LEDS 2
\r
34 #define BSP_GPIO_LEDARRAY_INIT {{gpioPortE,2},{gpioPortE,3}}
\r
36 #define BSP_STK_USE_EBI
\r
38 #define BSP_INIT_DEFAULT 0
\r
40 #define BSP_BCP_VERSION 2
\r
41 #include "bsp_bcp.h"
\r