mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-20 20:58:09 +08:00
101 lines
4.1 KiB
C
101 lines
4.1 KiB
C
|
/* clang-format off */
|
||
|
/*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
#ifndef CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_BOARD_H_
|
||
|
#define CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_BOARD_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "MSP_EXP432P401R.h"
|
||
|
|
||
|
#define Board_initGeneral MSP_EXP432P401R_initGeneral
|
||
|
#define Board_initGPIO MSP_EXP432P401R_initGPIO
|
||
|
#define Board_initI2C MSP_EXP432P401R_initI2C
|
||
|
#define Board_initPWM MSP_EXP432P401R_initPWM
|
||
|
#define Board_initSDSPI MSP_EXP432P401R_initSDSPI
|
||
|
#define Board_initSPI MSP_EXP432P401R_initSPI
|
||
|
#define Board_initUART MSP_EXP432P401R_initUART
|
||
|
#define Board_initWatchdog MSP_EXP432P401R_initWatchdog
|
||
|
#define Board_initWiFi MSP_EXP432P401R_initWiFi
|
||
|
|
||
|
#define Board_LED_ON MSP_EXP432P401R_LED_ON
|
||
|
#define Board_LED_OFF MSP_EXP432P401R_LED_OFF
|
||
|
|
||
|
#define Board_BUTTON0 MSP_EXP432P401R_S1
|
||
|
#define Board_BUTTON1 MSP_EXP432P401R_S2
|
||
|
#define Board_LED0 MSP_EXP432P401R_LED1
|
||
|
#define Board_LED1 MSP_EXP432P401R_LED_RED
|
||
|
#define Board_LED2 MSP_EXP432P401R_LED_RED
|
||
|
|
||
|
/*
|
||
|
* MSP_EXP432P401R_LED_GREEN & MSP_EXP432P401R_LED_BLUE are used for
|
||
|
* PWM examples. Uncomment the following lines if you would like to control
|
||
|
* the LEDs with the GPIO driver.
|
||
|
*/
|
||
|
//#define Board_LED2 MSP_EXP432P401R_LED_GREEN
|
||
|
//#define Board_LED3 MSP_EXP432P401R_LED_BLUE
|
||
|
|
||
|
#define Board_I2C0 MSP_EXP432P401R_I2CB0
|
||
|
#define Board_I2C_TMP MSP_EXP432P401R_I2CB0
|
||
|
#define Board_I2C_NFC MSP_EXP432P401R_I2CB0
|
||
|
#define Board_I2C_TPL0401 MSP_EXP432P401R_I2CB0
|
||
|
|
||
|
#define Board_PWM0 MSP_EXP432P401R_PWM_TA1_1
|
||
|
#define Board_PWM1 MSP_EXP432P401R_PWM_TA1_2
|
||
|
|
||
|
#define Board_SDSPI0 MSP_EXP432P401R_SDSPIB0
|
||
|
|
||
|
#define Board_SPI0 MSP_EXP432P401R_SPIB0
|
||
|
#define Board_SPI1 MSP_EXP432P401R_SPIB2
|
||
|
|
||
|
#define Board_UART0 MSP_EXP432P401R_UARTA0
|
||
|
#define Board_UART1 MSP_EXP432P401R_UARTA2
|
||
|
|
||
|
#define Board_WATCHDOG0 MSP_EXP432P401R_WATCHDOG
|
||
|
|
||
|
#define Board_WIFI MSP_EXP432P401R_WIFI
|
||
|
#define Board_WIFI_SPI MSP_EXP432P401R_SPIB0
|
||
|
|
||
|
/* Board specific I2C addresses */
|
||
|
#define Board_TMP006_ADDR (0x40)
|
||
|
#define Board_RF430CL330_ADDR (0x28)
|
||
|
#define Board_TPL0401_ADDR (0x40)
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* CS_MONGOOSE_EXAMPLES_MSP432_CCS_MG_HELLO_BOARD_H_ */
|