-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCC1350STK.h
319 lines (279 loc) · 10.1 KB
/
CC1350STK.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/*
* 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.
*/
/** ============================================================================
* @file CC1350STK.h
*
* @brief CC1350 SensorTag Board Specific header file.
*
* ============================================================================
*/
#ifndef __CC1350STK_SENSORTAG_BOARD_H__
#define __CC1350STK_SENSORTAG_BOARD_H__
#ifdef __cplusplus
extern "C" {
#endif
/** ============================================================================
* Includes
* ==========================================================================*/
#include <ti/drivers/PIN.h>
#include <driverlib/ioc.h>
/** ============================================================================
* Externs
* ==========================================================================*/
extern const PIN_Config BoardGpioInitTable[];
/** ============================================================================
* Defines
* ==========================================================================*/
/* RF front-end configuration */
#define CC1350STK_7XS
/* Mapping of pins to board signals using general board aliases
* <board signal alias> <pin mapping>
*/
/* Discrete outputs */
#define Board_STK_LED1 IOID_10
#define Board_BUZZER IOID_21
#define Board_LED_ON 1
#define Board_LED_OFF 0
#define Board_BUZZER_ON 1
#define Board_BUZZER_OFF 0
/* Discrete inputs */
#define Board_KEY_LEFT IOID_15 // Button2
#define Board_KEY_RIGHT IOID_4 // Button1
#define Board_RELAY IOID_1 // Reed
/* Sensor outputs */
#define Board_MPU_INT IOID_7
#define Board_TMP_RDY IOID_11
/* I2C */
#define Board_I2C0_SDA0 IOID_5
#define Board_I2C0_SCL0 IOID_6
#define Board_I2C0_SDA1 IOID_8
#define Board_I2C0_SCL1 IOID_9
/* SPI */
#define Board_SPI_FLASH_CS IOID_14
#define Board_FLASH_CS_ON 0
#define Board_FLASH_CS_OFF 1
#define Board_SPI0_MISO IOID_18
#define Board_SPI0_MOSI IOID_19
#define Board_SPI0_CLK IOID_17
#define Board_SPI0_CSN PIN_UNASSIGNED
#define Board_SPI1_MISO PIN_UNASSIGNED
#define Board_SPI1_MOSI PIN_UNASSIGNED
#define Board_SPI1_CLK PIN_UNASSIGNED
#define Board_SPI1_CSN PIN_UNASSIGNED
/* UART when connected to SRF06EB */
#define Board_EB_UART_TX IOID_16
#define Board_EB_UART_RX IOID_17
/* Power control */
#define Board_MPU_POWER IOID_12
#define Board_MPU_POWER_ON 1
#define Board_MPU_POWER_OFF 0
/* Audio */
#define Board_MIC_POWER IOID_13
#define Board_MIC_POWER_ON 1
#define Board_MIC_POWER_OFF 0
#define Board_AUDIO_DI IOID_2
#define Board_AUDIO_CLK IOID_3
/* UART pins used by driver */
#define Board_UART_TX Board_DP5_UARTTX
#define Board_UART_RX Board_DP4_UARTRX
/* DevPack common */
#define Board_AUDIOFS_TDO IOID_16
#define Board_AUDIODO IOID_22
#define Board_DP2 IOID_23
#define Board_DP1 IOID_24
#define Board_DP0 IOID_25
#define Board_DP3 IOID_27
#define Board_DP4_UARTRX IOID_28
#define Board_DP5_UARTTX IOID_29
#define Board_DEVPK_ID IOID_30
#define Board_SPI_DEVPK_CS IOID_20
/* LCD DevPack */
#define Board_LCD_EXTCOMIN IOID_22
#define Board_LCD_EXTMODE IOID_28
#define Board_LCD_ENABLE IOID_29
#define Board_LCD_POWER PIN_UNASSIGNED
#define Board_LCD_CS Board_SPI_DEVPK_CS
#define Board_LCD_CS_ON 1
#define Board_LCD_CS_OFF 0
/* LED-Audio DevPack */
#define Board_DEVPK_LIGHT_BLUE IOID_23
#define Board_DEVPK_LIGHT_GREEN IOID_24
#define Board_DEVPK_LIGHT_WHITE IOID_25
#define Board_DEVPK_LIGHT_RED IOID_27
/* PWM outputs */
#define Board_PWMPIN0 Board_STK_LED1
#define Board_PWMPIN1 PIN_UNASSIGNED
#define Board_PWMPIN2 PIN_UNASSIGNED
#define Board_PWMPIN3 PIN_UNASSIGNED
#define Board_PWMPIN4 PIN_UNASSIGNED
#define Board_PWMPIN5 PIN_UNASSIGNED
#define Board_PWMPIN6 PIN_UNASSIGNED
#define Board_PWMPIN7 PIN_UNASSIGNED
/** ============================================================================
* Instance identifiers
* ==========================================================================*/
/* Generic I2C instance identifiers */
#define Board_I2C CC1350STK_I2C0
/* Generic PDM instance identifiers */
#define Board_PDM CC2650STK_PDM0
/* Generic SPI instance identifiers */
#define Board_SPI0 CC1350STK_SPI0
/* Generic UART instance identifiers */
#define Board_UART CC1350STK_UART0
/* Generic Crypto instance identifiers */
#define Board_CRYPTO CC1350STK_CRYPTO0
/* Generic GPTimer instance identifiers */
#define Board_GPTIMER0A CC1350STK_GPTIMER0A
#define Board_GPTIMER0B CC1350STK_GPTIMER0B
#define Board_GPTIMER1A CC1350STK_GPTIMER1A
#define Board_GPTIMER1B CC1350STK_GPTIMER1B
#define Board_GPTIMER2A CC1350STK_GPTIMER2A
#define Board_GPTIMER2B CC1350STK_GPTIMER2B
#define Board_GPTIMER3A CC1350STK_GPTIMER3A
#define Board_GPTIMER3B CC1350STK_GPTIMER3B
/* Generic PWM instance identifiers */
#define Board_PWM0 CC1350STK_PWM0
#define Board_PWM1 CC1350STK_PWM1
#define Board_PWM2 CC1350STK_PWM2
#define Board_PWM3 CC1350STK_PWM3
#define Board_PWM4 CC1350STK_PWM4
#define Board_PWM5 CC1350STK_PWM5
#define Board_PWM6 CC1350STK_PWM6
#define Board_PWM7 CC1350STK_PWM7
/** ============================================================================
* Number of peripherals and their names
* ==========================================================================*/
/*!
* @def CC1350STK_I2CName
* @brief Enum of I2C names on the CC1350 dev board
*/
typedef enum CC1350STK_I2CName {
CC1350STK_I2C0 = 0,
CC1350STK_I2CCOUNT
} CC1350STK_I2CName;
/*!
* @def CC1350STK_CryptoName
* @brief Enum of Crypto names on the CC1350 dev board
*/
typedef enum CC1350STK_CryptoName {
CC1350STK_CRYPTO0 = 0,
CC1350STK_CRYPTOCOUNT
} CC1350STK_CryptoName;
/*!
* @def CC1350STK_PdmName
* @brief Enum of PDM names on the CC1350 dev board
*/
typedef enum CC1350STK_PDMName {
CC1350STK_PDM0 = 0,
CC1350STK_PDMCOUNT
} CC1350STK_PDMName;
/*!
* @def CC1350STK_SPIName
* @brief Enum of SPI names on the CC1350 dev board
*/
typedef enum CC1350STK_SPIName {
CC1350STK_SPI0 = 0,
CC1350STK_SPI1,
CC1350STK_SPICOUNT
} CC1350STK_SPIName;
/*!
* @def CC1350STK_UARTName
* @brief Enum of UARTs on the CC1350 dev board
*/
typedef enum CC1350STK_UARTName {
CC1350STK_UART0 = 0,
CC1350STK_UARTCOUNT
} CC1350STK_UARTName;
/*!
* @def CC1350STK_UdmaName
* @brief Enum of DMA buffers
*/
typedef enum CC1350STK_UdmaName {
CC1350STK_UDMA0 = 0,
CC1350STK_UDMACOUNT
} CC1350STK_UdmaName;
/*!
* @def CC1350STK_GPTimerName
* @brief Enum of GPTimer parts
*/
typedef enum CC1350STK_GPTimerName
{
CC1350STK_GPTIMER0A = 0,
CC1350STK_GPTIMER0B,
CC1350STK_GPTIMER1A,
CC1350STK_GPTIMER1B,
CC1350STK_GPTIMER2A,
CC1350STK_GPTIMER2B,
CC1350STK_GPTIMER3A,
CC1350STK_GPTIMER3B,
CC1350STK_GPTIMERPARTSCOUNT
} CC1350STK_GPTimerName;
/*!
* @def CC1350STK_GPTimers
* @brief Enum of GPTimers
*/
typedef enum CC1350STK_GPTimers
{
CC1350STK_GPTIMER0 = 0,
CC1350STK_GPTIMER1,
CC1350STK_GPTIMER2,
CC1350STK_GPTIMER3,
CC1350STK_GPTIMERCOUNT
} CC1350STK_GPTimers;
/*!
* @def CC1350STK_PWM
* @brief Enum of PWM outputs on the board
*/
typedef enum CC1350STK_PWM
{
CC1350STK_PWM0 = 0,
CC1350STK_PWM1,
CC1350STK_PWM2,
CC1350STK_PWM3,
CC1350STK_PWM4,
CC1350STK_PWM5,
CC1350STK_PWM6,
CC1350STK_PWM7,
CC1350STK_PWMCOUNT
} CC1350STK_PWM;
/*!
* @def CC1350STK_WatchdogName
* @brief Enum of Watchdogs on the CC1350STK dev board
*/
typedef enum CC1350STK_WatchdogName {
CC1350STK_WATCHDOG0 = 0,
CC1350STK_WATCHDOGCOUNT
} CC1350STK_WatchdogName;
#ifdef __cplusplus
}
#endif
#endif /* __CC1350STK_SENSORTAG_BOARD_H__ */