-
Notifications
You must be signed in to change notification settings - Fork 0
/
Board.h
106 lines (89 loc) · 4.46 KB
/
Board.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
* Copyright (c) 2015-2016, 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 "MSP_EXP432P401R.h"
#define Board_initADC MSP_EXP432P401R_initADC
#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_ACCx MSP_EXP432P401R_ADC14
#define Board_ACCy MSP_EXP432P401R_ADC13
#define Board_ACCz MSP_EXP432P401R_ADC11
#define BSP_JOYh MSP_EXP432P401R_ADC15
#define BSP_JOYv MSP_EXP432P401R_ADC9
#define Board_LED_ON MSP_EXP432P401R_LED_ON
#define Board_LED_OFF MSP_EXP432P401R_LED_OFF
#define Board_S1 MSP_EXP432P401R_S1
#define Board_S2 MSP_EXP432P401R_S2
#define BSP_S1 MSP_EXP432P401R_P5_1
#define BSP_S2 MSP_EXP432P401R_P3_5
#define BSP_JOYsel MSP_EXP432P401R_P4_1
#define Board_LED1 MSP_EXP432P401R_LED1
#define Board_LED2R MSP_EXP432P401R_LED_RED
//#define Board_LED2G MSP_EXP432P401R_LED_GREEN
//#define Board_LED2B 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_PWMG MSP_EXP432P401R_PWM_TA1_1
#define Board_PWMB MSP_EXP432P401R_PWM_TA1_2
#define BSP_BUZZ MSP_EXP432P401R_PWM_TA0_4
//#define BSP_LEDR MSP_EXP432P401R_P2_6
//#define BSP_LEDG MSP_EXP432P401R_P2_4
//#define BSP_LEDB MSP_EXP432P401R_P5_6
#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 /* __BOARD_H */