104 lines
4.2 KiB
C
104 lines
4.2 KiB
C
/*
|
|
* Copyright (c) 2014, Texas Instruments Incorporated
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* * 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.
|
|
*
|
|
* * Neither the name of Texas Instruments Incorporated 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 COPYRIGHT HOLDERS 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 COPYRIGHT OWNER 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.
|
|
*/
|
|
|
|
#ifndef __BOARD_H
|
|
#define __BOARD_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "EK_TM4C1294XL.h"
|
|
|
|
#define Board_initEMAC EK_TM4C1294XL_initEMAC
|
|
#define Board_initGeneral EK_TM4C1294XL_initGeneral
|
|
#define Board_initGPIO EK_TM4C1294XL_initGPIO
|
|
#define Board_initI2C EK_TM4C1294XL_initI2C
|
|
#define Board_initSDSPI EK_TM4C1294XL_initSDSPI
|
|
#define Board_initSPI EK_TM4C1294XL_initSPI
|
|
#define Board_initUART EK_TM4C1294XL_initUART
|
|
#define Board_initUSB EK_TM4C1294XL_initUSB
|
|
#define Board_initUSBMSCHFatFs EK_TM4C1294XL_initUSBMSCHFatFs
|
|
#define Board_initWatchdog EK_TM4C1294XL_initWatchdog
|
|
#define Board_initWiFi EK_TM4C1294XL_initWiFi
|
|
|
|
#define Board_LED_ON EK_TM4C1294XL_LED_ON
|
|
#define Board_LED_OFF EK_TM4C1294XL_LED_OFF
|
|
#define Board_LED0 EK_TM4C1294XL_D1
|
|
#define Board_LED1 EK_TM4C1294XL_D2
|
|
#define Board_LED2 EK_TM4C1294XL_D2
|
|
#define Board_BUTTON0 EK_TM4C1294XL_USR_SW1
|
|
#define Board_BUTTON1 EK_TM4C1294XL_USR_SW2
|
|
|
|
#define Board_I2C0 EK_TM4C1294XL_I2C7
|
|
#define Board_I2C1 EK_TM4C1294XL_I2C8
|
|
#define Board_I2C2 EK_TM4C1294XL_I2C0
|
|
#define Board_I2C3 EK_TM4C1294XL_I2C2
|
|
#define Board_I2C_TMP EK_TM4C1294XL_I2C7
|
|
#define Board_I2C_NFC EK_TM4C1294XL_I2C7
|
|
#define Board_I2C_TPL0401 EK_TM4C1294XL_I2C7
|
|
|
|
#define Board_SDSPI0 EK_TM4C1294XL_SDSPI0
|
|
#define Board_SDSPI1 EK_TM4C1294XL_SDSPI1
|
|
|
|
#define Board_SPI0 EK_TM4C1294XL_SPI2
|
|
#define Board_SPI1 EK_TM4C1294XL_SPI3
|
|
#define Board_SPI_CC3100 EK_TM4C1294XL_SPI2
|
|
|
|
#define Board_USBMSCHFatFs0 EK_TM4C1294XL_USBMSCHFatFs0
|
|
|
|
#define Board_USBHOST EK_TM4C1294XL_USBHOST
|
|
#define Board_USBDEVICE EK_TM4C1294XL_USBDEVICE
|
|
|
|
#define Board_UART0 EK_TM4C1294XL_UART0
|
|
#define Board_UART1 EK_TM4C1294XL_UART2
|
|
#define Board_UART2 EK_TM4C1294XL_UART6
|
|
#define Board_UART3 EK_TM4C1294XL_UART7
|
|
|
|
#define Board_WATCHDOG0 EK_TM4C1294XL_WATCHDOG0
|
|
|
|
#define Board_WIFI EK_TM4C1294XL_WIFI
|
|
|
|
#define Board_gpioCallbacks0 EK_TM4C1294XL_gpioPortJCallbacks
|
|
#define Board_gpioCallbacks1 EK_TM4C1294XL_gpioPortJCallbacks
|
|
|
|
/* Board specific I2C addresses */
|
|
#define Board_TMP006_ADDR (0x40)
|
|
#define Board_RF430CL330_ADDR (0x28)
|
|
#define Board_TPL0401_ADDR (0x40)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __BOARD_H */
|