forked from UECIDE/mikroe-mikromedia-795
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Board_Defs.h
382 lines (326 loc) · 12.4 KB
/
Board_Defs.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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
/************************************************************************/
/* */
/* Board_Defs.h -- Default Board Customization Declarations */
/* */
/************************************************************************/
/* Author: Gene Apperson */
/* Copyright 2011, Digilent. All rights reserved */
/************************************************************************/
/* File Description: */
/* */
/* This file contains the board specific declartions and data structure */
/* to customize the chipKIT MPIDE for use with a generic board using a */
/* PIC32 part in a 100-pin package. */
/* */
/* This code is based on earlier work: */
/* Copyright (c) 2010, 2011 by Mark Sproul */
/* Copyright (c) 2005, 2006 by David A. Mellis */
/* */
/************************************************************************/
/* Revision History: */
/* */
/* 10/07/2011(GeneA): Created */
/* 11/28/2011(GeneA): Moved data definitions and configuration */
/* functions to Board_Data.c */
/* 11/29/2011(GeneA): Moved int priority definitions to System_Defs.h */
/* */
/************************************************************************/
//* This library is free software; you can redistribute it and/or
//* modify it under the terms of the GNU Lesser General Public
//* License as published by the Free Software Foundation; either
//* version 2.1 of the License, or (at your option) any later version.
//*
//* This library is distributed in the hope that it will be useful,
//* but WITHOUT ANY WARRANTY; without even the implied warranty of
//* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
//* Lesser General Public License for more details.
//*
//* You should have received a copy of the GNU Lesser General
//* Public License along with this library; if not, write to the
//* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
//* Boston, MA 02111-1307 USA
/************************************************************************/
#if !defined(BOARD_DEFS_H)
#define BOARD_DEFS_H
#include <inttypes.h>
/* ------------------------------------------------------------ */
/* Public Board Declarations */
/* ------------------------------------------------------------ */
/* The following define symbols that can be used in a sketch to
** refer to periperhals on the board generically.
*/
#define _BOARD_NAME_ "100 Pin Default"
/* Define the peripherals available on the board.
*/
#define NUM_DIGITAL_PINS 112
#define NUM_ANALOG_PINS 16
#define NUM_OC_PINS 5
#define NUM_IC_PINS 5
#define NUM_TCK_PINS 5
#define NUM_INT_PINS 5
#define NUM_SERIAL_PORTS 2
#define NUM_SPI_PORTS 1
#define NUM_I2C_PORTS 1
#define NUM_DSPI_PORTS 1
#define NUM_DTWI_PORTS 2
/* Define I/O devices on the board.
*/
#define NUM_LED 1
#define NUM_BTN 0
#define NUM_SWT 0
#define NUM_SERVO 0
/* ------------------------------------------------------------ */
/* LED Declarations */
/* ------------------------------------------------------------ */
/* Define the pin numbers for the LEDs
*/
#define PIN_LED1 13
/* ------------------------------------------------------------ */
/* Button Declarations */
/* ------------------------------------------------------------ */
/* No buttons on this board.
*/
/* ------------------------------------------------------------ */
/* Switch Declarations */
/* ------------------------------------------------------------ */
/* No switches on this board.
*/
/* ------------------------------------------------------------ */
/* Servo Pin Declarations */
/* ------------------------------------------------------------ */
/* No servo connectors on this board.
*/
/* ------------------------------------------------------------ */
/* Timer Pin Declarations */
/* ------------------------------------------------------------ */
#define PIN_OC1 48
#define PIN_OC2 49
#define PIN_OC3 50
#define PIN_OC4 51
#define PIN_OC5 52
#define PIN_IC1 56
#define PIN_IC2 57
#define PIN_IC3 58
#define PIN_IC4 59
#define PIN_IC5 60
#define PIN_TCK1 46
#define PIN_TCK2 33
#define PIN_TCK3 34
#define PIN_TCK4 35
#define PIN_TCK5 36
/* ------------------------------------------------------------ */
/* Interrupt Pin Declarations */
/* ------------------------------------------------------------ */
#define PIN_INT0 48
#define PIN_INT1 72
#define PIN_INT2 73
#define PIN_INT3 14
#define PIN_INT4 15
/* ------------------------------------------------------------ */
/* SPI Pin Declarations */
/* ------------------------------------------------------------ */
/* These symbols are defined for compatibility with the original
** SPI library and the original pins_arduino.h. SPI2 is used for
** the default SPI port as it's pin numbers stay constant on all
** devices.
*/
const static uint8_t SS = 105; // PIC32 SS2
const static uint8_t MOSI = 104; // PIC32 SDO2
const static uint8_t MISO = 103; // PIC32 SDI2
const static uint8_t SCK = 102; // PIC32 SCK2
/* The Digilent DSPI library uses these ports.
*/
#define PIN_DSPI0_SS 105
/* ------------------------------------------------------------ */
/* Analog Pins */
/* ------------------------------------------------------------ */
/* Define symbols for accessing the analog pins. This table is
** used to map an analog pin number to the corresponding digital
** pin number.
*/
#define A0 16
#define A1 17
#define A2 18
#define A3 19
#define A4 20
#define A5 21
#define A6 22
#define A7 23
#define A8 24
#define A9 25
#define A10 26
#define A11 27
#define A12 28
#define A13 29
#define A14 30
#define A15 31
/* ------------------------------------------------------------ */
/* Change Notice Pins */
/* ------------------------------------------------------------ */
/* These define the pin numbers for the various change notice
** pins.
*/
#define PIN_CN0 46
#define PIN_CN1 45
#define PIN_CN2 16
#define PIN_CN3 17
#define PIN_CN4 18
#define PIN_CN5 19
#define PIN_CN6 20
#define PIN_CN7 21
#define PIN_CN8 102
#define PIN_CN9 103
#define PIN_CN10 104
#define PIN_CN11 105
#define PIN_CN12 31
#define PIN_CN13 52
#define PIN_CN14 53
#define PIN_CN15 54
#define PIN_CN16 55
#define PIN_CN17 84
#define PIN_CN18 85
#define PIN_CN19 61
#define PIN_CN20 62
#define PIN_CN21 63
/* ------------------------------------------------------------ */
/* Pin Mapping Macros */
/* ------------------------------------------------------------ */
/* This section contains the definitions for pin mapping macros that
/* are being redefined for this board variant.
*/
// This board variant doesn't need to change any of the default
// defintions.
/* ------------------------------------------------------------ */
/* Data Definitions */
/* ------------------------------------------------------------ */
/* The following declare externals to access the pin mapping
** tables.
*/
#if !defined(OPT_BOARD_DATA)
extern const uint32_t port_to_tris_PGM[];
extern const uint8_t digital_pin_to_port_PGM[];
extern const uint16_t digital_pin_to_bit_mask_PGM[];
extern const uint16_t digital_pin_to_timer_PGM[];
#if defined(_NOT_USED_)
extern const uint8_t digital_pin_to_analog_PGM[];
#endif
#if defined(_NOT_USED_)
extern const uint8_t analog_pin_to_channel_PGM[];
#endif
#endif
/* ------------------------------------------------------------ */
/* Internal Declarations */
/* ------------------------------------------------------------ */
/* The following declarations are used to map peripherals for */
/* the core and libraries and to provide configuration options */
/* for the core. They are not normally needed by a user sketch. */
/* ------------------------------------------------------------ */
#if defined(OPT_BOARD_INTERNAL)
/* ------------------------------------------------------------ */
/* Core Configuration Declarations */
/* ------------------------------------------------------------ */
/* */
/* These are conditional compilation switches that control the */
/* board core configuration functions. These functions provide */
/* hooks that can call from some of the core functions into */
/* functions defined below that can be used to extend or */
/* replace the default behavior of the core function. To use */
/* this, enter the appropriate code into the appropriate */
/* function skeleton below and then set the appropriate switch */
/* value to 1. This will cause the configuration function to be */
/* compiled into the build and will cause the code to call the */
/* hook function to be compiled into the core function. */
/* */
/* ------------------------------------------------------------ */
#define OPT_BOARD_INIT 0 //board needs no special init code
#define OPT_BOARD_DIGITAL_IO 0 //board does not extend digital i/o functions
#define OPT_BOARD_ANALOG_READ 0 //board does not extend analogRead
#define OPT_BOARD_ANALOG_WRITE 0 //board does not extend analogWrite
/* ------------------------------------------------------------ */
/* Serial Port Declarations */
/* ------------------------------------------------------------ */
/* Serial port 0 uses UART1
*/
#define _SER0_BASE _UART1_BASE_ADDRESS
#define _SER0_IRQ _UART1_ERR_IRQ
#define _SER0_VECTOR _UART_1_VECTOR
#define _SER0_IPL_ISR _UART1_IPL_ISR
#define _SER0_IPL _UART1_IPL_IPC
#define _SER0_SPL _UART1_SPL_IPC
/* Serial port 1 uses UART2
*/
#define _SER1_BASE _UART2_BASE_ADDRESS
#define _SER1_IRQ _UART2_ERR_IRQ
#define _SER1_VECTOR _UART_2_VECTOR
#define _SER1_IPL_ISR _UART2_IPL_ISR
#define _SER1_IPL _UART2_IPL_IPC
#define _SER1_SPL _UART2_SPL_IPC
/* ------------------------------------------------------------ */
/* SPI Port Declarations */
/* ------------------------------------------------------------ */
/* The default SPI port uses SPI2. The pins for SPI2 stay the
** same on all PIC32 devices. The pins for SPI1 move around,
** and the ports beyond SPI2 aren't defined on some devices.
*/
#define _SPI_BASE _SPI2_BASE_ADDRESS
#define _SPI_ERR_IRQ _SPI2_ERR_IRQ
#define _SPI_RX_IRQ _SPI2_RX_IRQ
#define _SPI_TX_IRQ _SPI2_TX_IRQ
#define _SPI_VECTOR _SPI_2_VECTOR
#define _SPI_IPL_ISR _SPI2_IPL_ISR
#define _SPI_IPL _SPI2_IPL_IPC
#define _SPI_SPL _SPI2_SPL_IPC
/* The Digilent DSPI library uses the same port.
*/
#define _DSPI0_BASE _SPI2_BASE_ADDRESS
#define _DSPI0_ERR_IRQ _SPI2_ERR_IRQ
#define _DSPI0_RX_IRQ _SPI2_RX_IRQ
#define _DSPI0_TX_IRQ _SPI2_TX_IRQ
#define _DSPI0_VECTOR _SPI_2_VECTOR
#define _DSPI0_IPL_ISR _SPI2_IPL_ISR
#define _DSPI0_IPL _SPI2_IPL_IPC
#define _DSPI0_SPL _SPI2_SPL_IPC
/* ------------------------------------------------------------ */
/* I2C Port Declarations */
/* ------------------------------------------------------------ */
/* The standard I2C port uses I2C1 (SCL1/SDA1). These come to pins
** A4/A5 on the analog connector. It is necessary to have jumpers
** JP6/JP8 set appropriately (RG2/RG3 position) to access the I2C
** signals.
*/
#define _TWI_BASE _I2C1_BASE_ADDRESS
#define _TWI_BUS_IRQ _I2C1_BUS_IRQ
#define _TWI_SLV_IRQ _I2C1_SLAVE_IRQ
#define _TWI_MST_IRQ _I2C1_MASTER_IRQ
#define _TWI_VECTOR _I2C_1_VECTOR
#define _TWI_IPL_ISR _I2C1_IPL_ISR
#define _TWI_IPL _I2C1_IPL_IPC
#define _TWI_SPL _I2C1_SPL_IPC
/* Declarations for Digilent DTWI library.
** DTWI0 is on A4/A5 (see above comment).
** DTWI1 is on digital pins 38 & 39.
*/
#define _DTWI0_BASE _I2C1_BASE_ADDRESS
#define _DTWI0_BUS_IRQ _I2C1_BUS_IRQ
#define _DTWI0_SLV_IRQ _I2C1_SLAVE_IRQ
#define _DTWI0_MST_IRQ _I2C1_MASTER_IRQ
#define _DTWI0_VECTOR _I2C_1_VECTOR
#define _DTWI0_IPL_ISR _I2C1_IPL_ISR
#define _DTWI0_IPL _I2C1_IPL_IPC
#define _DTWI0_SPL _I2C1_SPL_IPC
#define _DTWI1_BASE _I2C2_BASE_ADDRESS
#define _DTWI1_BUS_IRQ _I2C2_BUS_IRQ
#define _DTWI1_SLV_IRQ _I2C2_SLAVE_IRQ
#define _DTWI1_MST_IRQ _I2C2_MASTER_IRQ
#define _DTWI1_VECTOR _I2C_2_VECTOR
#define _DTWI1_IPL_ISR _I2C2_IPL_ISR
#define _DTWI1_IPL _I2C2_IPL_IPC
#define _DTWI1_SPL _I2C2_SPL_IPC
/* ------------------------------------------------------------ */
/* A/D Converter Declarations */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
#endif // OPT_BOARD_INTERNAL
/* ------------------------------------------------------------ */
#endif // BOARD_DEFS_H
/************************************************************************/