]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - sub1ghz-sensor-to-cloud/tida01476.git/blobdiff - sensor_cc1310lp/Application/LaunchPad/TIDA-00489_Board.h
initial commit, TIDA-01476 archive and hex
[sub1ghz-sensor-to-cloud/tida01476.git] / sensor_cc1310lp / Application / LaunchPad / TIDA-00489_Board.h
diff --git a/sensor_cc1310lp/Application/LaunchPad/TIDA-00489_Board.h b/sensor_cc1310lp/Application/LaunchPad/TIDA-00489_Board.h
deleted file mode 100644 (file)
index 72347e3..0000000
+++ /dev/null
@@ -1,164 +0,0 @@
-/*
- * Copyright (c) 2015, 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.
- */
-/** ============================================================================
- *  @file       Board.h
- *
- *  @brief      TIDA-00489 Board Specific header file.
- *
- *  The CC1310 header file should be included in an application as follows:
- *  @code
- *  #include <Board.h>
- *  @endcode
- *
- *  ============================================================================
- */
-
-#ifndef __BOARD_H__
-#define __BOARD_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/** ============================================================================
- *  Includes
- *  ==========================================================================*/
-#include <ti/drivers/PIN.h>
-#include <ti/drivers/I2C.h>
-#include <driverlib/ioc.h>
-
-/** ============================================================================
- *  Global variables
- *  ==========================================================================*/
-//I2C_Handle       AppI2cHandle;
-//I2C_Params       AppI2cParams;
-//I2C_Transaction  i2cTransaction;
-
-/** ============================================================================
- *  Externs
- *  ==========================================================================*/
-extern PIN_Config BoardGpioInitTable[];
-
-/** ============================================================================
- *  Defines
- *  ==========================================================================*/
-
-/* Mapping of pins to board signals using general board aliases
- *      <board signal alias>                <pin mapping>
- */
-#define Board_PIR_Out_Lo                                       IOID_16
-#define Board_PIR_Out_Hi                                       IOID_17
-#define Board_Mode                                                     IOID_3
-
-#define Board_TEST26                                           IOID_26
-#define Board_TEST27                                           IOID_27
-#define Board_TEST28                                           IOID_28
-#define Board_TEST29                                           IOID_29
-
-
-/** ============================================================================
- *  Instance identifiers
- *  ==========================================================================*/
-/* Generic I2C instance identifiers */
-#define Board_I2C                   CC1310_I2C0
-/* Generic Crypto instance identifiers */
-#define Board_CRYPTO                CC1310_CRYPTO0
-#define Board_CRYPTO0               Board_CRYPTO
-
-/** ============================================================================
- *  Reuse TI-RTOS defines
- *  ==========================================================================*/
-/* These #defines allow us to reuse TI-RTOS across other device families */
-#define     Board_I2C0              Board_I2C
-#define     Board_AES0              Board_AES
-
-#define     Board_initGeneral()     PIN_init(BoardGpioInitTable)
-#define     Board_initGPIO()
-#define        Board_initI2C()                 I2C_init()
-#define     GPIO_toggle(n)
-#define     GPIO_write(n,m)
-
-/** ============================================================================
- *  Number of peripherals and their names
- *  ==========================================================================*/
-
-/*!
- *  @def    CC1310_I2CName
- *  @brief  Enum of I2C names on the CC1310 dev board
- */
-typedef enum CC1310_I2CName {
-    CC1310_I2C0 = 0,
-    CC1310_I2CCOUNT
-} CC1310_I2CName;
-
-/*!
- *  @def    CC1310_CryptoName
- *  @brief  Enum of Crypto names on the CC1310 dev board
- */
-typedef enum CC1310_CryptoName {
-    CC1310_CRYPTO0 = 0,
-    CC1310_CRYPTOCOUNT
-} CC1310_CryptoName;
-
-/*!
- *  @def    CC1310_SPIName
- *  @brief  Enum of SPI names on the CC1310 dev board
- */
-typedef enum CC1310_SPIName {
-    CC1310_SPI0 = 0,
-    CC1310_SPI1,
-    CC1310_SPICOUNT
-} CC1310_SPIName;
-
-/*!
- *  @def    CC1310_UARTName
- *  @brief  Enum of UARTs on the CC1310 dev board
- */
-typedef enum CC1310_UARTName {
-    CC1310_UART0 = 0,
-    CC1310_UARTCOUNT
-} CC1310_UARTName;
-
-/*!
- *  @def    CC1310_UdmaName
- *  @brief  Enum of DMA buffers
- */
-typedef enum CC1310_UdmaName {
-    CC1310_UDMA0 = 0,
-    CC1310_UDMACOUNT
-} CC1310_UdmaName;
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __CC1310EM_H__ */